fixes icons on listviews.

This commit is contained in:
Claus
2017-03-28 14:27:05 +02:00
parent 5a2b4f031b
commit d1d83c84a0

View File

@@ -1,7 +1,7 @@
(function () {
'use strict';
function TableDirective() {
function TableDirective(iconHelper) {
function link(scope, el, attr, ctrl) {
@@ -43,6 +43,10 @@
}
};
scope.getIcon = function (entry) {
return iconHelper.convertFromLegacyIcon(entry.icon);
};
}
var directive = {