fix(core): Fix Filtering of Workflow by Tags (#5570)

This commit is contained in:
Csaba Tuncsik
2023-02-27 12:25:45 +01:00
committed by GitHub
parent 1942fd8232
commit ea2035b510
3 changed files with 12 additions and 1 deletions

View File

@@ -164,7 +164,7 @@ export class WorkflowsService {
if (!config.getEnv('workflowTagsDisabled')) {
relations.push('tags');
select.tags = { name: true };
select.tags = { id: true, name: true };
}
if (isSharingEnabled()) {