Commit a84d2ca4ecd0a9aa4fa44019ba062d6ce1f7378f
1 parent
ca7ffd99
fixed Firefox minor ui bag in entities-table widget
Showing
1 changed file
with
3 additions
and
1 deletions
@@ -340,7 +340,9 @@ function EntitiesTableWidgetController($element, $scope, $filter, $mdMedia, $tra | @@ -340,7 +340,9 @@ function EntitiesTableWidgetController($element, $scope, $filter, $mdMedia, $tra | ||
340 | } | 340 | } |
341 | if (!style.width) { | 341 | if (!style.width) { |
342 | var columnWidth = vm.columnWidth[key.label]; | 342 | var columnWidth = vm.columnWidth[key.label]; |
343 | - style.width = columnWidth; | 343 | + if(columnWidth && columnWidth !== "0px") { |
344 | + style.width = columnWidth; | ||
345 | + } | ||
344 | } | 346 | } |
345 | return style; | 347 | return style; |
346 | } | 348 | } |