This commit is contained in:
2020-03-18 22:01:50 +00:00
parent ebfd2b9dee
commit 0c4de7135e
2 changed files with 5 additions and 5 deletions

View File

@@ -51,7 +51,7 @@
//and in theory it could help if picking more than one tag that have similar selection criteria
export default {
beforeUpdate() {
//Set the initial picklist items based on the record items, this only needs to be called once at init
//Set the initial list items based on the record items, this only needs to be called once at init
if (!this.initialized && this.value.length > 0) {
this.sourcetags = this.value;
this.initialized = true;
@@ -77,7 +77,7 @@ export default {
}
vm.tagSearchUnderway = true;
window.$gz.api
.get("TagList/picklist?query=" + val) //roles
.get("TagList/List?query=" + val) //roles
.then(res => {
if (res.error) {
throw res.error;