diff --git a/app/components/table/table.js b/app/components/table/table.js index f3cedc1..35f8a57 100644 --- a/app/components/table/table.js +++ b/app/components/table/table.js @@ -188,11 +188,11 @@ angular.module('adagios.table', ['adagios.live', angular.forEach(items, function (item) { if (previous === item[fieldToCompare]) { - item[new_attr] = 'hide-childrens'; + item[new_attr] = 'state--rmChild'; } else { previous = item[fieldToCompare].slice(0); if (!!item[new_attr]) { - item[new_attr] = item[new_attr].replace("hide-childrens", ""); + item[new_attr] = item[new_attr].replace("state--rmChild", ""); } } newItems.push(item);