This commit is contained in:
2021-02-23 00:18:51 +00:00
parent f8aed30019
commit af9d2a805c

View File

@@ -245,14 +245,7 @@
</template>
<template v-slot:[`item.actions`]="{ item }">
<v-btn icon @click="editItem(item)">
<v-icon
large
v-if="$vuetify.breakpoint.xs"
:color="poItemsRowClasses(item)"
>
$ayiEdit
</v-icon>
<v-icon v-else>
<v-icon :class="poItemsRowClasses(item)">
$ayiEdit
</v-icon>
</v-btn>
@@ -860,7 +853,7 @@ export default {
methods: {
poItemsRowClasses: function(item) {
if (this.form().childRowHasError(this, "Items", item.index)) {
return "error";
return "font-weight-black font-italic error--text";
}
},
editItem: function(item) {