mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-13 16:00:13 +00:00
More code for #2457
This commit is contained in:
59465
public/v1/js/app.js
vendored
59465
public/v1/js/app.js
vendored
File diff suppressed because one or more lines are too long
@@ -31,7 +31,7 @@
|
|||||||
ref="descr"
|
ref="descr"
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
placeholder="Description"
|
placeholder="Description"
|
||||||
@input="handleInput"
|
:value="value" @input="handleInput"
|
||||||
>
|
>
|
||||||
<typeahead
|
<typeahead
|
||||||
:open-on-empty=true
|
:open-on-empty=true
|
||||||
@@ -61,6 +61,7 @@
|
|||||||
return {
|
return {
|
||||||
descriptionAutoCompleteURI: null,
|
descriptionAutoCompleteURI: null,
|
||||||
name: null,
|
name: null,
|
||||||
|
value: null,
|
||||||
description: null,
|
description: null,
|
||||||
target: null,
|
target: null,
|
||||||
}
|
}
|
||||||
@@ -70,7 +71,7 @@
|
|||||||
return this.error.length > 0;
|
return this.error.length > 0;
|
||||||
},
|
},
|
||||||
handleInput(e) {
|
handleInput(e) {
|
||||||
//this.$emit('input', this.$refs.descr.value);
|
this.$emit('input', this.$refs.descr.value);
|
||||||
},
|
},
|
||||||
handleEnter: function (e) {
|
handleEnter: function (e) {
|
||||||
// todo feels sloppy
|
// todo feels sloppy
|
||||||
|
Reference in New Issue
Block a user