diff --git a/src/pages/InvoiceIn/Card/InvoiceInVat.vue b/src/pages/InvoiceIn/Card/InvoiceInVat.vue
index 3eb9365d2..5d3e82824 100644
--- a/src/pages/InvoiceIn/Card/InvoiceInVat.vue
+++ b/src/pages/InvoiceIn/Card/InvoiceInVat.vue
@@ -32,6 +32,13 @@ const invoiceInFormRef = ref();
const expensesRef = ref();
const newExpenseRef = ref();
+defineProps({
+ actionIcon: {
+ type: String,
+ default: 'add',
+ },
+});
+
const columns = computed(() => [
{
name: 'expense',
@@ -207,17 +214,16 @@ async function addExpense() {
@click.stop="value = null"
class="cursor-pointer"
/>
-
{{ t('Create expense') }}
-
+
@@ -470,6 +476,11 @@ async function addExpense() {
.q-item {
min-height: 0;
}
+.default-icon {
+ cursor: pointer;
+ border-radius: 50px;
+ background-color: $primary;
+}
es: