diff --git a/resources/assets/js/home/CustomCaseList/CustomCaseList.vue b/resources/assets/js/home/CustomCaseList/CustomCaseList.vue index b9396e769..a3791ca86 100644 --- a/resources/assets/js/home/CustomCaseList/CustomCaseList.vue +++ b/resources/assets/js/home/CustomCaseList/CustomCaseList.vue @@ -43,7 +43,7 @@
{{ props.row.CASE_NUMBER }}
-
+
{{ props.row.THREAD_TITLE }}
@@ -747,6 +747,7 @@ export default { product, newItems = []; that.filterItems = []; + that.headings = {}; response.data.columns.forEach((item) => { if (item.enableFilter) { if (that.availableItems[that.itemMap[item.field]]) { @@ -758,6 +759,7 @@ export default { } } } + that.headings[item.field] = item.name; columns.push(item.field); }); that.filterItems = newItems; diff --git a/resources/assets/js/home/CustomCaseList/defaultMixins.js b/resources/assets/js/home/CustomCaseList/defaultMixins.js index a28054249..e7d8b6601 100644 --- a/resources/assets/js/home/CustomCaseList/defaultMixins.js +++ b/resources/assets/js/home/CustomCaseList/defaultMixins.js @@ -138,6 +138,7 @@ export default { product, newItems = []; that.filterItems = []; + that.headings = {}; response.data.columns.forEach((item) => { if (item.enableFilter) { if (that.availableItems[that.itemMap[item.field]]) { @@ -149,6 +150,7 @@ export default { } } } + that.headings[item.field] = item.name; columns.push(item.field); }); that.filterItems = newItems;