summaryrefslogtreecommitdiffstats
path: root/pyload/web/app/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/web/app/scripts')
-rw-r--r--pyload/web/app/scripts/views/dashboard/filterView.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/web/app/scripts/views/dashboard/filterView.js b/pyload/web/app/scripts/views/dashboard/filterView.js
index 736b740e1..9d8c46e4e 100644
--- a/pyload/web/app/scripts/views/dashboard/filterView.js
+++ b/pyload/web/app/scripts/views/dashboard/filterView.js
@@ -148,7 +148,7 @@ define(['jquery', 'backbone', 'underscore', 'app', 'utils/apitypes', 'models/Pac
filter_type: function(e) {
var el = $(e.target);
- var type = parseInt(el.data('type'));
+ var type = parseInt(el.data('type'), 10);
// Bit is already set, so type is not visible, will become visible now
if (type & this.types) {