mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-20 16:11:46 +03:00
Move to lowercase spellcheck to prevent a svelte check warning.
This commit is contained in:
parent
23744f0c70
commit
78053bb3c1
@ -163,7 +163,7 @@
|
||||
<TextBox
|
||||
icon="filter"
|
||||
placeholder="Search"
|
||||
spellCheck={false}
|
||||
spellcheck={false}
|
||||
on:input={(e) => textFilter$.next(e.detail)}
|
||||
/>
|
||||
<div bind:this={contents} class="content">
|
||||
|
@ -16,7 +16,7 @@
|
||||
export let noselect = false;
|
||||
export let selectall = false;
|
||||
export let element: HTMLElement | undefined = undefined;
|
||||
export let spellCheck = true;
|
||||
export let spellcheck = true;
|
||||
|
||||
const dispatch = createEventDispatcher<{ input: string; change: string }>();
|
||||
</script>
|
||||
@ -44,7 +44,7 @@
|
||||
{readonly}
|
||||
{required}
|
||||
{placeholder}
|
||||
{spellCheck}
|
||||
{spellcheck}
|
||||
type="password"
|
||||
class="textbox__input text-base-13"
|
||||
class:select-none={noselect}
|
||||
@ -59,7 +59,7 @@
|
||||
{readonly}
|
||||
{required}
|
||||
{placeholder}
|
||||
{spellCheck}
|
||||
{spellcheck}
|
||||
class="textbox__input text-base-13"
|
||||
class:select-none={noselect}
|
||||
class:select-all={selectall}
|
||||
|
Loading…
Reference in New Issue
Block a user