ci: Upgrade eslint, prettier, typescript, and some other dev tooling (no-changelog) (#8895)
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
This commit is contained in:
committed by
GitHub
parent
117b57ccc5
commit
372d5c7d01
@@ -132,7 +132,7 @@
|
||||
:placeholder="$locale.baseText('workflowOpen.filterWorkflows')"
|
||||
:model-value="filters.tags"
|
||||
:create-enabled="false"
|
||||
@update:modelValue="setKeyValue('tags', $event)"
|
||||
@update:model-value="setKeyValue('tags', $event)"
|
||||
/>
|
||||
</div>
|
||||
<div class="mb-s">
|
||||
@@ -146,7 +146,7 @@
|
||||
<n8n-select
|
||||
data-test-id="status-dropdown"
|
||||
:model-value="filters.status"
|
||||
@update:modelValue="setKeyValue('status', $event)"
|
||||
@update:model-value="setKeyValue('status', $event)"
|
||||
>
|
||||
<n8n-option
|
||||
v-for="option in statusFilterOptions"
|
||||
@@ -329,13 +329,12 @@ const WorkflowsView = defineComponent({
|
||||
if (this.settingsStore.areTagsEnabled && filters.tags.length > 0) {
|
||||
matches =
|
||||
matches &&
|
||||
filters.tags.every(
|
||||
(tag) =>
|
||||
(resource.tags as ITag[])?.find((resourceTag) =>
|
||||
typeof resourceTag === 'object'
|
||||
? `${resourceTag.id}` === `${tag}`
|
||||
: `${resourceTag}` === `${tag}`,
|
||||
),
|
||||
filters.tags.every((tag) =>
|
||||
(resource.tags as ITag[])?.find((resourceTag) =>
|
||||
typeof resourceTag === 'object'
|
||||
? `${resourceTag.id}` === `${tag}`
|
||||
: `${resourceTag}` === `${tag}`,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user