Browse Source

Merge pull request #521 from Terny22/ff-entity-widget-issue

Firefox entities-table widget bug
pull/528/head
Igor Kulikov 9 years ago
committed by GitHub
parent
commit
c5ba493f86
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      ui/src/app/widget/lib/entities-table-widget.js

6
ui/src/app/widget/lib/entities-table-widget.js

@ -340,7 +340,11 @@ function EntitiesTableWidgetController($element, $scope, $filter, $mdMedia, $tra
}
if (!style.width) {
var columnWidth = vm.columnWidth[key.label];
style.width = columnWidth;
if(columnWidth !== "0px") {
style.width = columnWidth;
} else {
style.width = "auto";
}
}
return style;
}

Loading…
Cancel
Save