Skip to content

Commit 4058937

Browse files
authored
fix: expose not equals to UI (#15089)
Signed-off-by: Miltiadis Alexis <[email protected]>
1 parent 26ef394 commit 4058937

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Description: Name Not Equals filter now available in the UI for filtering workflows
2+
Authors: [Miltiadis Alexis](https://github.com/miltalex)
3+
Component: UI
4+
Issues: #13468
5+
6+
You can now use the "Name Not Equals" filter in the workflow list to exclude workflows by name.
7+
This complements the existing "Name Exact" filter and provides more flexible filtering options.
8+
Use this filter when you want to view all workflows except those matching a specific name pattern.

ui/src/workflows/components/workflow-filters/workflow-filters.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ const NAME_FILTERS = [
2929
{
3030
title: 'Name Exact',
3131
id: 'Exact' as const
32+
},
33+
{
34+
title: 'Name Not Equals',
35+
id: 'NotEquals' as const
3236
}
3337
];
3438

0 commit comments

Comments
 (0)