From b3f6fc11b962faf8c40f3c5185268321c835debf Mon Sep 17 00:00:00 2001 From: Nadim Salloum Date: Mon, 12 Jul 2021 21:54:27 +0300 Subject: [PATCH] columns on dashboard --- public/js/app.js | 5 ----- resources/js/Components/Contracts/ContractTable.vue | 1 - 2 files changed, 6 deletions(-) diff --git a/public/js/app.js b/public/js/app.js index bca1510..62bd973 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -18496,11 +18496,6 @@ __webpack_require__.r(__webpack_exports__); }); } - columns.push({ - key: 'price', - value: this.type == '1' ? 'Verkaufspreis' : 'Einkaufspreis', - sortable: false - }); return columns; } } diff --git a/resources/js/Components/Contracts/ContractTable.vue b/resources/js/Components/Contracts/ContractTable.vue index 7e4610b..ab394b5 100644 --- a/resources/js/Components/Contracts/ContractTable.vue +++ b/resources/js/Components/Contracts/ContractTable.vue @@ -36,7 +36,6 @@ export default { if (this.contracts[0].contact) { columns.push({ key: 'contact', value: this.type == '1' ? 'Käufer' : 'Verkäufer', sortable: false}) } - columns.push({ key: 'price', value: this.type == '1' ? 'Verkaufspreis' : 'Einkaufspreis', sortable: false}) return columns; },