Various fixes

This commit is contained in:
James Cole
2022-05-07 19:26:37 +02:00
parent 2e3071d40f
commit 9020ed158c
24 changed files with 139 additions and 112 deletions

View File

@@ -132,7 +132,7 @@
<script>
import Post from "../../api/webhooks/post";
import {mapGetters} from "vuex";
// import {mapGetters} from "vuex";
import {getCacheKey} from "../../store/fireflyiii/getters";
export default {
@@ -174,7 +174,7 @@ export default {
},
watch: {},
computed: {
...mapGetters('fireflyiii', ['getCacheKey']),
// ...mapGetters('fireflyiii', ['getCacheKey']),
disabledInput: function () {
return this.submitting;
}

View File

@@ -85,7 +85,7 @@
</template>
<script>
import {mapGetters} from "vuex";
// import {mapGetters} from "vuex";
import Destroy from "../../api/generic/destroy";
import List from "../../api/webhooks/list";
@@ -119,7 +119,7 @@ export default {
}
},
computed: {
...mapGetters('fireflyiii', ['getCacheKey', 'getListPageSize']),
// ...mapGetters('fireflyiii', ['getCacheKey', 'getListPageSize']),
},
created() {
this.pagination.rowsPerPage = this.getListPageSize;