fixed dry run usage

This commit is contained in:
Flaminel
2026-03-20 00:34:00 +02:00
parent f1533ad785
commit def4e8afda
7 changed files with 75 additions and 42 deletions

View File

@@ -51,4 +51,5 @@ export interface SearchEvent {
completedAt: string | null;
grabbedItems: unknown[] | null;
cycleRunId: string | null;
isDryRun: boolean;
}

View File

@@ -126,6 +126,9 @@
{{ event.searchStatus }}
</app-badge>
}
@if (event.isDryRun) {
<app-badge severity="accent" size="sm">Dry Run</app-badge>
}
@if (event.cycleRunId) {
<span class="list-row__cycle">{{ event.cycleRunId.substring(0, 8) }}</span>
}