Skip to content

Commit

Permalink
Merge pull request #1751 from slntopp/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
SazukinPavel authored May 27, 2024
2 parents 4a26e64 + 0516d7c commit 7593fb1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions admin-ui/src/components/invoiceItemsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</template>

<template v-slot:[`item.actions`]="{ index }">
<div class="d-flex justify-end">
<div class="d-flex justify-center">
<v-btn icon @click="emit('click:delete', index)"
><v-icon>mdi-delete</v-icon></v-btn
>
Expand Down Expand Up @@ -68,10 +68,10 @@ const generalRule = ref([(v) => !!v || "This field is required!"]);
const headers = computed(() =>
[
showDate.value && { text: "Date", value: "date" },
{ text: "Title", value: "title", width: 100 },
{ text: "Title", value: "title", width: 125 },
{ text: "Description", value: "description" },
{ text: "Amount", value: "amount", width: 50 },
showDelete.value && { text: "Actions", value: "actions", width: 50 },
{ text: "Amount", value: "amount", width: 175 },
showDelete.value && { text: "Actions", value: "actions", width:25 },
].filter((c) => !!c)
);
const accountCurrency = computed(
Expand Down

0 comments on commit 7593fb1

Please sign in to comment.