File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
readthedocs/projects/static-src/projects/js Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,8 @@ function Organization (instance, view) {
55
55
self . filter_type = 'org' ;
56
56
self . filtered = ko . computed ( function ( ) {
57
57
var filter = view . filter_by ( ) ;
58
- return ( filter . id && filter . id != self . filter_id ( ) ) || ( filter . type && filter . type != self . filter_type ) ;
58
+ return ( filter . id && filter . id != self . filter_id ( ) ) ||
59
+ ( filter . type && filter . type != self . filter_type ) ;
59
60
} ) ;
60
61
}
61
62
@@ -77,7 +78,8 @@ function Account (instance, view) {
77
78
self . filter_type = 'own' ;
78
79
self . filtered = ko . computed ( function ( ) {
79
80
var filter = view . filter_by ( ) ;
80
- return ( filter . id && filter . id != self . filter_id ( ) ) || ( filter . type && filter . type != self . filter_type ) ;
81
+ return ( filter . id && filter . id != self . filter_id ( ) ) ||
82
+ ( filter . type && filter . type != self . filter_type ) ;
81
83
} ) ;
82
84
}
83
85
You can’t perform that action at this time.
0 commit comments