Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveitaly committed Jan 3, 2023
1 parent 5154668 commit dd1dae5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/QueryExplorer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ RETURN = sort_by_duration(merged_events);
if (_.includes(query, '__CATEGORIES__')) {
const categoryRules = useCategoryStore().classes_for_query;
if(useCategoryStore().classes_for_query.length === 0) {
if (useCategoryStore().classes_for_query.length === 0) {
this.error = '__CATEGORIES__ was used in query but no categories have been defined yet.';
return;
}
Expand Down

1 comment on commit dd1dae5

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here are screenshots of this commit:

Screenshots using aw-server v0.12.1 (click to expand)

Screenshots using aw-server-rust master (click to expand)

Screenshots using aw-server-rust v0.12.1 (click to expand)

Please sign in to comment.