mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Make sure form elements are not spell checked.
This commit is contained in:
@@ -25,6 +25,7 @@
|
||||
<div class="col-sm-12">
|
||||
<div class="input-group">
|
||||
<input
|
||||
spellcheck="false"
|
||||
ref="input"
|
||||
:data-index="index"
|
||||
:disabled="inputDisabled"
|
||||
|
@@ -26,7 +26,7 @@
|
||||
<label ref="cur" class="col-sm-4 control-label"></label>
|
||||
<div class="col-sm-8">
|
||||
<div class="input-group">
|
||||
<input ref="amount"
|
||||
<input ref="amount" spellcheck="false"
|
||||
:title="$t('firefly.amount')"
|
||||
:value="value"
|
||||
autocomplete="off"
|
||||
|
@@ -26,6 +26,7 @@
|
||||
<div class="col-sm-12">
|
||||
<div class="input-group">
|
||||
<input
|
||||
spellcheck="false"
|
||||
ref="input"
|
||||
:value="value"
|
||||
autocomplete="off"
|
||||
|
@@ -27,7 +27,7 @@
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<div class="input-group">
|
||||
<input ref="input"
|
||||
<input ref="input" spellcheck="false"
|
||||
:name="name"
|
||||
:placeholder="title"
|
||||
:title="title"
|
||||
|
@@ -27,7 +27,7 @@
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<div class="input-group">
|
||||
<input ref="date" :name="name" :placeholder="title"
|
||||
<input ref="date" :name="name" :placeholder="title" spellcheck="false"
|
||||
:title="title" :value="value ? value.substr(0,10): ''"
|
||||
autocomplete="off"
|
||||
class="form-control" type="date"
|
||||
|
@@ -27,7 +27,7 @@
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<div class="input-group">
|
||||
<input ref="str" :name="name" :placeholder="title"
|
||||
<input ref="str" :name="name" :placeholder="title" spellcheck="false"
|
||||
:title="title" :value="value"
|
||||
autocomplete="off"
|
||||
class="form-control" type="text"
|
||||
|
@@ -27,7 +27,7 @@
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<div class="input-group">
|
||||
<input ref="uri" :name="name" :placeholder="title"
|
||||
<input ref="uri" :name="name" :placeholder="title" spellcheck="false"
|
||||
:title="title" :value="value"
|
||||
autocomplete="off"
|
||||
class="form-control" type="url"
|
||||
|
@@ -26,6 +26,7 @@
|
||||
<div class="col-sm-12">
|
||||
<div class="input-group">
|
||||
<input
|
||||
spellcheck="false"
|
||||
ref="descr"
|
||||
:value="value"
|
||||
autocomplete="off"
|
||||
|
@@ -26,6 +26,7 @@
|
||||
<div class="col-sm-12">
|
||||
<div class="input-group">
|
||||
<input
|
||||
spellcheck="false"
|
||||
ref="descr"
|
||||
:title="$t('firefly.description')"
|
||||
:value="value"
|
||||
|
Reference in New Issue
Block a user