fix: ignore 0 retention on event search (#5614)

* fix: filter all search events if retention

* test(e2e): test event api filter
This commit is contained in:
Elio Bischof
2023-04-05 19:56:11 +02:00
committed by GitHub
parent 5c8748d769
commit 29c0adb650
4 changed files with 36 additions and 9 deletions

View File

@@ -91,7 +91,7 @@
<ng-container matColumnDef="type">
<th mat-header-cell *matHeaderCellDef>{{ 'IAM.EVENTS.TYPE' | translate }}</th>
<td mat-cell *matCellDef="let event">
<td mat-cell *matCellDef="let event" data-e2e="event-type-cell">
<ng-container *ngIf="event | toobject as event">
<span *ngIf="event.type?.localized?.localizedMessage">{{ event.type.localized.localizedMessage }}</span>
</ng-container>