Move to lowercase spellcheck to prevent a svelte check warning.

This commit is contained in:
Caleb Owens 2024-02-15 22:13:51 +00:00 committed by Kiril Videlov
parent 23744f0c70
commit 78053bb3c1
2 changed files with 4 additions and 4 deletions

View File

@ -163,7 +163,7 @@
<TextBox <TextBox
icon="filter" icon="filter"
placeholder="Search" placeholder="Search"
spellCheck={false} spellcheck={false}
on:input={(e) => textFilter$.next(e.detail)} on:input={(e) => textFilter$.next(e.detail)}
/> />
<div bind:this={contents} class="content"> <div bind:this={contents} class="content">

View File

@ -16,7 +16,7 @@
export let noselect = false; export let noselect = false;
export let selectall = false; export let selectall = false;
export let element: HTMLElement | undefined = undefined; export let element: HTMLElement | undefined = undefined;
export let spellCheck = true; export let spellcheck = true;
const dispatch = createEventDispatcher<{ input: string; change: string }>(); const dispatch = createEventDispatcher<{ input: string; change: string }>();
</script> </script>
@ -44,7 +44,7 @@
{readonly} {readonly}
{required} {required}
{placeholder} {placeholder}
{spellCheck} {spellcheck}
type="password" type="password"
class="textbox__input text-base-13" class="textbox__input text-base-13"
class:select-none={noselect} class:select-none={noselect}
@ -59,7 +59,7 @@
{readonly} {readonly}
{required} {required}
{placeholder} {placeholder}
{spellCheck} {spellcheck}
class="textbox__input text-base-13" class="textbox__input text-base-13"
class:select-none={noselect} class:select-none={noselect}
class:select-all={selectall} class:select-all={selectall}