PMCORE-3703
PMCORE-3703 update
This commit is contained in:
@@ -802,7 +802,7 @@ export default {
|
|||||||
if (that.availableItems[that.itemMap[item.field]]) {
|
if (that.availableItems[that.itemMap[item.field]]) {
|
||||||
newItems.push(that.availableItems[that.itemMap[item.field]]);
|
newItems.push(that.availableItems[that.itemMap[item.field]]);
|
||||||
} else {
|
} else {
|
||||||
product = this.filterItemFactory(item)
|
product = this.filterItemFactory(item);
|
||||||
if (product) {
|
if (product) {
|
||||||
newItems.push(product);
|
newItems.push(product);
|
||||||
}
|
}
|
||||||
@@ -837,9 +837,9 @@ export default {
|
|||||||
filterItemFactory(item) {
|
filterItemFactory(item) {
|
||||||
let product;
|
let product;
|
||||||
if (item.type === "DATETIME") {
|
if (item.type === "DATETIME") {
|
||||||
product= {...this.customItems["DATETIME"]};
|
product= _.cloneDeep(this.customItems["DATETIME"]);
|
||||||
} else {
|
} else {
|
||||||
product = {...this.customItems["VARCHAR"]};
|
product = _.cloneDeep(this.customItems["VARCHAR"]);
|
||||||
}
|
}
|
||||||
product.title += " " + item.name;
|
product.title += " " + item.name;
|
||||||
product.id = item.field;
|
product.id = item.field;
|
||||||
|
|||||||
Reference in New Issue
Block a user