Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3410 from sirensolutions/backport_issue_3397
Browse files Browse the repository at this point in the history
Fixed undefined sorting column names
  • Loading branch information
szydan committed Jul 25, 2017
2 parents d3b2c68 + ff5446e commit b4b4955
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ uiModules
_.each($scope.columns, (column, i) => {
$scope.sortingColumns.push({
value: column,
label: $scope.columnAliases[i]
label: $scope.columnAliases[i] || column // alias or real name when aliases not used
});
});
}
Expand Down

0 comments on commit b4b4955

Please sign in to comment.