working user server-dupe before modifying to be local client dupe
This commit is contained in:
@@ -419,29 +419,6 @@ todo: many biz objects are not using new PUT methodology
|
|||||||
CURRENTLY DOING: make sure tags is fixed fully after created change
|
CURRENTLY DOING: make sure tags is fixed fully after created change
|
||||||
|
|
||||||
|
|
||||||
bugbug: tags are not *displaying* when a record is opened until click in a field
|
|
||||||
Does not happen on devops which was posted June 17th so it happened after june 17th
|
|
||||||
happens with chrome or firefox locally but not on devops so it's a local code issue
|
|
||||||
Same browser as devops so not a browser issue
|
|
||||||
happening in all objects with tags
|
|
||||||
not happening in wiki
|
|
||||||
reveals only when a change to the form is made of some kind that triggers I guess formfieldchanged
|
|
||||||
event. Fuck.
|
|
||||||
tag picker hasn't been modified since april 30 and only to change a font
|
|
||||||
bug isn't due to change in tag picker itself
|
|
||||||
I'm leaning toward a vuetify regression when updated tag picker source <v-autocomplete with vuetify
|
|
||||||
look into that aspect
|
|
||||||
smoking gun: Vue and vuetify were updated the day after posting to devops working version
|
|
||||||
check for another use of v-autocomplete and see if same issue to confirm then check for update since or bug reports on vuetify
|
|
||||||
Maybe just check for front end updates through vue ui and if there any vuetify do it then check if fixed before digging too deeply
|
|
||||||
|
|
||||||
Weird but was using beforeUpdate in tags and no where else so switched to created adn now it works
|
|
||||||
could find no changes related to this specifically but there was a bunch of vue changes
|
|
||||||
so it appears to work properly now at least tested in wo and customer just opening and viewing
|
|
||||||
|
|
||||||
TODO: test making new tags in new record, editing tags etc and adding to make sure it's really working properly
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
todo: User duplicate not working, error about optionsobj
|
todo: User duplicate not working, error about optionsobj
|
||||||
Message:_vm.optionsObj is undefined
|
Message:_vm.optionsObj is undefined
|
||||||
|
|||||||
@@ -774,12 +774,16 @@ export default {
|
|||||||
vm.formState.serverError = res.error;
|
vm.formState.serverError = res.error;
|
||||||
window.$gz.form.setErrorBoxErrors(vm);
|
window.$gz.form.setErrorBoxErrors(vm);
|
||||||
} else {
|
} else {
|
||||||
|
vm.obj = res.data;
|
||||||
|
await vm.getUserOptionsDataFromApi();
|
||||||
|
|
||||||
//Navigate to new record
|
//Navigate to new record
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: "adm-user",
|
name: "adm-user",
|
||||||
params: {
|
params: {
|
||||||
recordid: res.data.id,
|
recordid: res.data.id,
|
||||||
obj: res.data // pass data object to new form
|
obj: res.data, // pass data object to new form
|
||||||
|
optionsObj: vm.optionsObj
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user