mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-20 02:01:19 +00:00
Update for 5.5.10
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
-->
|
||||
|
||||
<template>
|
||||
<div :id="'split_' + index" :class="'tab-pane' + (0===index ? ' active' : '')">
|
||||
<div :id="'split_' + index" :class="'tab-pane' + (0 === index ? ' active' : '')">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="card">
|
||||
@@ -32,6 +32,7 @@
|
||||
<button type="button" class="btn btn-danger btn-xs" @click="removeTransaction"><i class="fas fa-trash-alt"></i></button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
<!-- start of body -->
|
||||
<div class="row">
|
||||
@@ -330,7 +331,7 @@ export default {
|
||||
},
|
||||
count: {
|
||||
type: Number,
|
||||
required: false
|
||||
required: true
|
||||
},
|
||||
customFields: {
|
||||
type: Object,
|
||||
@@ -370,6 +371,9 @@ export default {
|
||||
}
|
||||
|
||||
},
|
||||
created() {
|
||||
console.log('SplitForm(' + this.index + ')');
|
||||
},
|
||||
methods: {
|
||||
removeTransaction: function () {
|
||||
// console.log('Will remove transaction ' + this.index);
|
||||
|
||||
Reference in New Issue
Block a user