Skip to content

Commit

Permalink
fix multiple query keys bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nsano-rururu committed Mar 23, 2021
1 parent d502deb commit 05a8af9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "praeco",
"version": "1.8.3",
"version": "1.8.4",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
4 changes: 2 additions & 2 deletions src/components/config/ConfigCondition.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1313,7 +1313,7 @@ export default {
// if rule supports and has a queryKey, set groupedOver to field
if (
this.queryKey
this.queryKey.length
&& ['metric_aggregation', 'frequency', 'flatline', 'any',
'change', 'spike', 'flatline', 'cardinality'].includes(this.type)
) {
Expand Down Expand Up @@ -1341,7 +1341,7 @@ export default {
if (this.groupedOver === 'all') {
this.groupByValue = '';
this.queryKey = [];
this.queryKey = '';
}
},
Expand Down

0 comments on commit 05a8af9

Please sign in to comment.