mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 01:24:03 +02:00
Fix sense of column sort order indicators
This commit is contained in:
parent
f55d1f7ce7
commit
a0691a581c
1 changed files with 2 additions and 2 deletions
|
@ -12,8 +12,8 @@ var currentSortColumn = 'type';
|
|||
var currentSortOrder = 'des';
|
||||
var entityList = null;
|
||||
var refreshEntityListTimer = null;
|
||||
const ASCENDING_STRING = '▾';
|
||||
const DESCENDING_STRING = '▴';
|
||||
const ASCENDING_STRING = '▴';
|
||||
const DESCENDING_STRING = '▾';
|
||||
const LOCKED_GLYPH = "";
|
||||
const VISIBLE_GLYPH = "";
|
||||
const TRANSPARENCY_GLYPH = "'";
|
||||
|
|
Loading…
Reference in a new issue