From cffbde5f5c237444dfaa25387ff19e7574e1abfa Mon Sep 17 00:00:00 2001 From: rolux Date: Mon, 17 Nov 2014 14:22:14 +0000 Subject: [PATCH] make sure that in filters that are annotations layers, the default sort order for the name is descending --- static/js/filter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/filter.js b/static/js/filter.js index c50258b6..8de3d36f 100644 --- a/static/js/filter.js +++ b/static/js/filter.js @@ -43,7 +43,7 @@ pandora.ui.filter = function(id) { ) : value }, - operator: filter.type == 'string' ? '+' : '-', + operator: filter.type == 'string' || filter.type == 'layer' ? '+' : '-', title: title, visible: true, width: pandora.user.ui.filterSizes[i] - 44 - Ox.UI.SCROLLBAR_SIZE