Skip to content

Commit

Permalink
[hotfix/7206]
Browse files Browse the repository at this point in the history
 - width gets adjusted so that ellipses aren't shown
  • Loading branch information
prx-lmo authored and mportuga committed Feb 3, 2022
1 parent 3bdd97e commit 7851ff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/resize-columns/src/js/ui-grid-column-resizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@
var e = angular.element(newElm);
e.attr('style', 'float: left');

var width = gridUtil.elementWidth(e);
var width = gridUtil.elementWidth(e) + 2;

if (menuButton) {
var menuButtonWidth = gridUtil.elementWidth(menuButton);
Expand Down

0 comments on commit 7851ff8

Please sign in to comment.