Add more sort options to new lists

This commit is contained in:
mabashian
2019-04-25 15:21:47 -04:00
parent 27d74528c0
commit 7f452ee8d1
16 changed files with 71 additions and 62 deletions

View File

@@ -38,13 +38,6 @@ 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)'),
USERNAME_ASCENDING: t.s('Username (Ascending)'),
USERNAME_DESCENDING: t.s('Username (Descending)')
};
}
ApplicationsStrings.$inject = ['BaseStringService'];