]> source.dussan.org Git - sonarqube.git/commitdiff
fix assignee facet, part 2
authorStas Vilchik <vilchiks@gmail.com>
Thu, 17 Nov 2016 16:36:55 +0000 (17:36 +0100)
committerStas Vilchik <vilchiks@gmail.com>
Thu, 17 Nov 2016 16:36:55 +0000 (17:36 +0100)
server/sonar-web/src/main/js/apps/issues/controller.js

index 0ed0a70442bc65461466abf5fdb90ba3da8b2178..619bcacdb23faf83da52af416fce8afa756c008b 100644 (file)
@@ -131,7 +131,7 @@ export default Controller.extend({
     return q;
   },
 
-  getQuery (separator, addContext) {
+  getQuery (separator, addContext, handleMyIssues = false) {
     if (separator == null) {
       separator = '|';
     }
@@ -142,7 +142,7 @@ export default Controller.extend({
     if (addContext && this.options.app.state.get('isContext')) {
       _.extend(filter, this.options.app.state.get('contextQuery'));
     }
-    if (this.options.app.state.get('query').assigned_to_me) {
+    if (handleMyIssues && this.options.app.state.get('query').assigned_to_me) {
       _.extend(filter, { assignees: '__me__' });
     }
     const route = [];