File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
frontend/src/modules/dashboard/components/activity Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ import { mapGetters } from 'vuex';
90
90
import { sentimentQuery } from ' @/modules/dashboard/dashboard.cube' ;
91
91
import AppCubeRender from ' @/shared/cube/cube-render.vue' ;
92
92
import AppLoading from ' @/shared/loading/loading-placeholder.vue' ;
93
+ import { filterQueryService } from ' @/shared/modules/filters/services/filter-query.service' ;
93
94
94
95
export default {
95
96
name: ' AppDashboardActivitySentiment' ,
@@ -170,7 +171,13 @@ export default {
170
171
handleSentimentClick (sentiment ) {
171
172
this .$router .push ({
172
173
name: ' activity' ,
173
- query: { sentiment },
174
+ query: filterQueryService ().setQuery ({
175
+ sentiment: {
176
+ value: [sentiment],
177
+ include: true ,
178
+ },
179
+ }),
180
+ hash: ' #activity' ,
174
181
});
175
182
},
176
183
},
You can’t perform that action at this time.
0 commit comments