This commit is contained in:
2021-04-16 20:17:44 +00:00
parent ea4fc8edae
commit 911588f3ac
3 changed files with 28 additions and 9 deletions

View File

@@ -141,7 +141,8 @@ export default {
stopDate: null,
serviceRateId: null,
isDirty: true,
workOrderItemId: this.value.items[this.activeWoItemIndex].id
workOrderItemId: this.value.items[this.activeWoItemIndex].id,
uid: Date.now() //used for error tracking / display
});
this.$emit("change");
this.selectedRow = [{ index: newIndex }];

View File

@@ -191,7 +191,7 @@ export default {
travels: [],
units: [],
outsideServices: [],
uid: Date.now() //guaranteed unique and higher than any prior
uid: Date.now() //used for error tracking / display
});
this.$emit("change");
this.selectedRow = [{ index: newIndex }];