Browse Source

Fix the "delete" button in the table view

In c7fa6c8b5b the code using
`updateFlatStatus` moved to the new file `flatstableline.vue` but the
actual method wasn't moved in the process, yielding an error when one
wanted to use the button.

This patch moves the method to the new file.
master
Julien Wajsberg 5 years ago
parent
commit
ef896f999f
  1. 3
      flatisfy/web/js_src/components/flatstable.vue
  2. 6
      flatisfy/web/js_src/components/flatstableline.vue

3
flatisfy/web/js_src/components/flatstable.vue

@ -118,9 +118,6 @@ export default { @@ -118,9 +118,6 @@ export default {
},
methods: {
updateFlatStatus (id, status) {
this.$store.dispatch('updateFlatStatus', { flatId: id, newStatus: status })
},
updateSortBy (field) {
if (this.sortBy === field) {
if (this.sortOrder === 'up') {

6
flatisfy/web/js_src/components/flatstableline.vue

@ -86,6 +86,12 @@ export default { @@ -86,6 +86,12 @@ export default {
return range(this.flat.notation);
},
},
methods: {
updateFlatStatus (id, status) {
this.$store.dispatch('updateFlatStatus', { flatId: id, newStatus: status })
},
},
};
</script>

Loading…
Cancel
Save