From 2da13bfcd13723927ec0c868f6240adfad56f263 Mon Sep 17 00:00:00 2001 From: Vasile Vartic Date: Mon, 9 Oct 2017 17:00:43 +0300 Subject: [PATCH] Update title if the Id is the same --- src/directives/apMesa.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/directives/apMesa.js b/src/directives/apMesa.js index c6821a3..8ff29a9 100644 --- a/src/directives/apMesa.js +++ b/src/directives/apMesa.js @@ -183,6 +183,9 @@ if (columns !== scope.columns) { resetColumns(scope); initSorts(scope); + scope.enabledColumnObjects = scope.enabledColumns.map(function(columnId) { + return scope.transientState.columnLookup[columnId]; + }); } });