Skip to content

Commit

Permalink
build: fix deps
Browse files Browse the repository at this point in the history
  • Loading branch information
xmlking committed Feb 24, 2024
1 parent c618dad commit 797a0f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
dryrun:
description: Build with dey-run.
type: boolean
default: true
default: false
required: false
push:
tags:
Expand Down Expand Up @@ -86,4 +86,4 @@ jobs:
BUILD_TIME=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
BUILD_VERSION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }}
BUILD_REVISION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
SCOPE==${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.title'] }}
SCOPE=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.title'] }}
4 changes: 2 additions & 2 deletions apps/console-fb/src/lib/components/toast/Toasts.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { CloseButton } from 'flowbite-svelte';
import {
CheckSolid,
CircleCheckSolid,
CheckCircleSolid ,
ExclamationCircleOutline,
InfoCircleOutline
} from 'flowbite-svelte-icons';
Expand Down Expand Up @@ -54,7 +54,7 @@
{#if toast.type === ToastLevel.Success}
<CheckSolid size="xs" ariaLabel="Success icon" />
{:else if toast.type === ToastLevel.Error}
<CircleCheckSolid size="xs" ariaLabel="Error icon" />
<CheckCircleSolid size="xs" ariaLabel="Error icon" />
{:else if toast.type === ToastLevel.Warning}
<ExclamationCircleOutline size="xs" ariaLabel="Warning icon" />
{:else}
Expand Down

0 comments on commit 797a0f0

Please sign in to comment.