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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
1 deletions
-
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; |
|
|
|
} |
|
|
|
|