From c27f27b2e139dff0484d9a9fb4f6e52500f3bfb2 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Sun, 23 Jan 2022 22:25:31 +0000 Subject: [PATCH] --- ayanova/src/components/work-order-item-units.vue | 10 ++++++++-- ayanova/src/components/work-order-items.vue | 6 +++--- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/ayanova/src/components/work-order-item-units.vue b/ayanova/src/components/work-order-item-units.vue index 00d318c2..bf663968 100644 --- a/ayanova/src/components/work-order-item-units.vue +++ b/ayanova/src/components/work-order-item-units.vue @@ -187,7 +187,7 @@ :error-messages=" form().serverErrors( this, - `Items[${activeWoItemIndex}].units[${activeItemIndex}].notes` + `Items[${activeWoItemIndex}].units[${activeItemIndex}].workOrderItemUnitNotes` ) " data-cy="unitUnitNotes" @@ -215,7 +215,7 @@ :error-messages=" form().serverErrors( this, - `Items[${activeWoItemIndex}].units[${activeItemIndex}].tags` + `Items[${activeWoItemIndex}].units[${activeItemIndex}].workOrderItemUnitTags` ) " @input=" @@ -266,6 +266,12 @@ :aya-type="$ay.ayt().WorkOrderItem" :aya-id="value.id" :readonly="formState.readOnly" + :error-messages=" + form().serverErrors( + this, + `Items[${activeWoItemIndex}].units[${activeItemIndex}].workOrderItemUnitWiki` + ) + " @input=" fieldValueChanged( `Items[${activeWoItemIndex}].units[${activeItemIndex}].wiki` diff --git a/ayanova/src/components/work-order-items.vue b/ayanova/src/components/work-order-items.vue index ab4e0c55..87eee1e3 100644 --- a/ayanova/src/components/work-order-items.vue +++ b/ayanova/src/components/work-order-items.vue @@ -458,7 +458,7 @@