aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--interface/js/app/history.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/interface/js/app/history.js b/interface/js/app/history.js
index e0b7aa22b..af941467f 100644
--- a/interface/js/app/history.js
+++ b/interface/js/app/history.js
@@ -457,7 +457,11 @@ function($, _, Humanize) {
_onStatusDropdownChanged : function(e) {
var self = e.data.self, selected = $(this).val();
if (selected !== self.def) {
- self.addFilter('action', selected, [ 'action' ]);
+ if(selected === "reject"){
+ self.addFilter('action', 'reject -soft', [ 'action' ]);
+ } else {
+ self.addFilter('action', selected, [ 'action' ]);
+ }
} else {
self.removeFilter('action');
}