Move the search input to filters
This commit is contained in:
parent
f7d8095b5a
commit
81da1e68e2
1 changed files with 13 additions and 0 deletions
|
@ -17,6 +17,18 @@
|
||||||
</fancycheckbox>
|
</fancycheckbox>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="field">
|
||||||
|
<label class="label">Search</label>
|
||||||
|
<div class="control">
|
||||||
|
<input
|
||||||
|
class="input"
|
||||||
|
placeholder="Search"
|
||||||
|
v-model="params.s"
|
||||||
|
@blur="change()"
|
||||||
|
@keyup.enter="change()"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label class="label">Priority</label>
|
<label class="label">Priority</label>
|
||||||
<div class="control single-value-control">
|
<div class="control single-value-control">
|
||||||
|
@ -213,6 +225,7 @@ export default {
|
||||||
filter_comparator: [],
|
filter_comparator: [],
|
||||||
filter_include_nulls: true,
|
filter_include_nulls: true,
|
||||||
filter_concat: 'or',
|
filter_concat: 'or',
|
||||||
|
s: '',
|
||||||
},
|
},
|
||||||
filters: {
|
filters: {
|
||||||
done: false,
|
done: false,
|
||||||
|
|
Loading…
Reference in a new issue