Add sort toolbar to applications list

This commit is contained in:
Marliana Lara
2019-03-11 13:44:21 -04:00
parent fb1d918c2d
commit b55212368b
3 changed files with 66 additions and 5 deletions

View File

@@ -38,6 +38,11 @@ function ApplicationsStrings (BaseString) {
ns.inputs = {
ORGANIZATION_PLACEHOLDER: t.s('SELECT AN ORGANIZATION')
};
ns.sort = {
NAME_ASCENDING: t.s('Name (Ascending)'),
NAME_DESCENDING: t.s('Name (Descending)')
};
}
ApplicationsStrings.$inject = ['BaseStringService'];