mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-25 06:51:08 +00:00
Fix #2405
This commit is contained in:
@@ -29,7 +29,7 @@
|
|||||||
<input type="date" class="form-control" :name="name"
|
<input type="date" class="form-control" :name="name"
|
||||||
:title="title" autocomplete="off"
|
:title="title" autocomplete="off"
|
||||||
ref="date"
|
ref="date"
|
||||||
:value="value" @input="handleInput"
|
:value="value.substr(0,10)" @input="handleInput"
|
||||||
:placeholder="title">
|
:placeholder="title">
|
||||||
<ul class="list-unstyled" v-for="error in this.error">
|
<ul class="list-unstyled" v-for="error in this.error">
|
||||||
<li class="text-danger">{{ error }}</li>
|
<li class="text-danger">{{ error }}</li>
|
||||||
|
@@ -396,7 +396,6 @@
|
|||||||
},
|
},
|
||||||
budget: transaction.budget_id,
|
budget: transaction.budget_id,
|
||||||
tags: newTags,
|
tags: newTags,
|
||||||
//tags: 'abc',
|
|
||||||
custom_fields: {
|
custom_fields: {
|
||||||
interest_date: transaction.interest_date,
|
interest_date: transaction.interest_date,
|
||||||
book_date: transaction.book_date,
|
book_date: transaction.book_date,
|
||||||
@@ -415,7 +414,6 @@
|
|||||||
id: transaction.source_id,
|
id: transaction.source_id,
|
||||||
name: transaction.source_name,
|
name: transaction.source_name,
|
||||||
type: transaction.source_type,
|
type: transaction.source_type,
|
||||||
// i dont know these
|
|
||||||
currency_id: transaction.currency_id,
|
currency_id: transaction.currency_id,
|
||||||
currency_name: transaction.currency_name,
|
currency_name: transaction.currency_name,
|
||||||
currency_code: transaction.currency_code,
|
currency_code: transaction.currency_code,
|
||||||
|
Reference in New Issue
Block a user