Skip to content

Commit

Permalink
fix(sort): Fixing sorting priority aria-label
Browse files Browse the repository at this point in the history
  • Loading branch information
endiny authored and mportuga committed Apr 28, 2017
1 parent 78a90e7 commit a364886
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/core/directives/ui-grid-header-cell.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
var label = sortDirectionText;

if ($scope.isSortPriorityVisible()) {
label = label + '. ' + $scope.i18n.headerCell.priority + ' ' + col.sort.priority;
label = label + '. ' + $scope.i18n.headerCell.priority + ' ' + (col.sort.priority + 1);
}
return label;
};
Expand Down

0 comments on commit a364886

Please sign in to comment.