PMCORE-3056:UI - Sectional Icons EHX

error key duplicated
This commit is contained in:
fabio
2021-08-04 16:03:33 -04:00
parent ec7b157c00
commit a28c78be39
7 changed files with 37 additions and 7 deletions

View File

@@ -13,6 +13,8 @@
<MyCasesFilter
:filters="filters"
:title="title"
:random="random"
:icon="filterHeaderObject.icon"
@onRemoveFilter="onRemoveFilter"
@onUpdateFilters="onUpdateFilters"
/>
@@ -101,7 +103,11 @@ export default {
filter: "CASES_INBOX",
allView: [],
filterHeader: "STARTED",
filterHeaderObject: {
icon:"fas fa-inbox"
},
headers: [],
random: _.random(0,1000000000),
newCase: {
title: this.$i18n.t("ID_NEW_CASE"),
class: "btn-success",
@@ -533,6 +539,8 @@ export default {
that.filterHeader = obj.item;
that.$refs["vueTable"].setPage(1); // Reset the page when change the header filter
that.$refs["vueTable"].getData();
that.filterHeaderObject = obj;
that.random = _.random(0,1000000000);
},
class: info[v.id].class
});