Skip to content
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.

Commit

Permalink
fix a couple build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kclejeune committed Aug 31, 2021
1 parent 2c1d04b commit c167ef0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/lib/components/ui/Dropdown.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<ul tabindex="0" class="p-2 shadow menu dropdown-content bg-base-100 rounded-box w-52">
{#each options as option}
<li on:click={() => (selected = option)}>
<!-- svelte-ignore a11y-missing-attribute -->
<a>{displayWith(option)}</a>
</li>
{/each}
Expand Down
1 change: 1 addition & 0 deletions src/lib/components/ui/Menu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
</li>
{#each options as option}
<li on:click={() => (selected = option)}>
<!-- svelte-ignore a11y-missing-attribute -->
<a class="rounded-lg {selected === option ? 'bg-primary' : ''}">{displayWith(option)}</a>
</li>
{/each}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/widgets/NetworkInformation.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import Alert from '$lib/components/ui/Alert.svelte';
export let cellStats: CellRadioStat;
export let title: string;
export let title: string = '';
let statusItems: StatusItem[];
$: statusItems = [
{ name: 'Band', value: cellStats.Band },
Expand Down

0 comments on commit c167ef0

Please sign in to comment.