We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d729ea commit 3c15b3dCopy full SHA for 3c15b3d
src/fragments/forms/map-form/components/optimization/components/edit-dialog/edit-dialog.js
@@ -159,6 +159,7 @@ export default {
159
}
160
//create a string of data as copy
161
this.dataCopy = JSON.stringify(this.editData)
162
+ this.skillsCopy = JSON.stringify(this.editSkills)
163
164
// close editJobs box to pick a place from the map
165
EventBus.$on('pickAPlace', () => {
@@ -239,6 +240,9 @@ export default {
239
240
if (this.content.item === 'Vehicle') {
241
this.validateTimeWindow()
242
243
+ /* if(JSON.stringify(this.editSkills) !== this.skillsCopy){
244
+ TODO: update skills
245
+ }*/
246
if (this.hasEmptyLocation) {
247
this.showError(this.content.emptyLoc, {timeout: 3000})
248
} else {
0 commit comments