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