- dark mode

- fixes
This commit is contained in:
Peter Papp
2021-05-17 10:00:01 +02:00
parent 04a1f88abb
commit b16b8b87cc
7 changed files with 888 additions and 734 deletions
@@ -132,12 +132,12 @@
},
deleteItem() {
if (this.$isThisLocation(['regular-invoice', 'advance-invoice']) && this.clipboard.length > 0) {
this.deleteInvoice(this.clipboard[0])
if (this.$isThisLocation(['regular-invoice', 'advance-invoice'])) {
this.$deleteInvoice(this.clipboard[0])
}
if (this.$isThisLocation('clients') && this.clipboard.length > 0) {
this.deleteClient(this.clipboard[0])
if (this.$isThisLocation('clients')) {
this.$deleteClient(this.clipboard[0])
}
},
editItem() {