diff --git a/packages/editor-ui/src/components/WorkflowOpen.vue b/packages/editor-ui/src/components/WorkflowOpen.vue index 568b35a574..77e9e8a640 100644 --- a/packages/editor-ui/src/components/WorkflowOpen.vue +++ b/packages/editor-ui/src/components/WorkflowOpen.vue @@ -32,7 +32,7 @@ @@ -124,6 +124,11 @@ export default mixins( updateTagsFilter(tags: string[]) { this.filterTagIds = tags; }, + onTagClick(tagId: string) { + if (tagId !== 'count' && !this.filterTagIds.includes(tagId)) { + this.filterTagIds.push(tagId); + } + }, async openWorkflow (data: IWorkflowShortResponse, column: any) { // tslint:disable-line:no-any if (column.label !== 'Active') {