Skip to content

Commit

Permalink
chore(StatusIcon): adding accepting values for status (podman-desktop…
Browse files Browse the repository at this point in the history
…#7912)

Signed-off-by: axel7083 <[email protected]>
  • Loading branch information
axel7083 authored Jul 3, 2024
1 parent 79411c2 commit b068f7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/lib/statusIcon/StatusIcon.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Spinner from '../progress/Spinner.svelte';
// status: one of RUNNING, STARTING, USED, CREATED, DELETING, or DEGRADED
// any other status will result in a standard outlined box
export let status = '';
export let status: 'RUNNING' | 'STARTING' | 'USED' | 'DEGRADED' | 'DELETING' | 'CREATED' | string = 'UNKNOWN';
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export let icon: any = undefined;
export let size = 20;
Expand Down

0 comments on commit b068f7b

Please sign in to comment.