Skip to content

Commit

Permalink
fix: filter executions by version and name (#758)
Browse files Browse the repository at this point in the history
* fix: filter executions by version and name

Signed-off-by: Carina Ursu <[email protected]>

* chore: vers

Signed-off-by: Carina Ursu <[email protected]>

---------

Signed-off-by: Carina Ursu <[email protected]>
  • Loading branch information
ursucarina authored May 15, 2023
1 parent 22ed97f commit a4802e0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/console/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flyteorg/console",
"version": "0.0.32",
"version": "0.0.33",
"description": "Flyteconsole main app module",
"main": "./dist/index.js",
"module": "./lib/index.js",
Expand Down
5 changes: 5 additions & 0 deletions packages/console/src/components/Entities/generators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ export const executionFilterGenerator: {
operation: FilterOperationName.EQ,
value: version,
},
{
key: 'workflow.name',
operation: FilterOperationName.EQ,
value: name,
},
]
: [
{
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"dependencies": {
"@flyteorg/common": "^0.0.4",
"@flyteorg/console": "^0.0.32",
"@flyteorg/console": "^0.0.33",
"long": "^4.0.0",
"protobufjs": "~6.11.3",
"react-ga4": "^1.4.1",
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2020,7 +2020,7 @@ __metadata:
resolution: "@flyteconsole/client-app@workspace:website"
dependencies:
"@flyteorg/common": ^0.0.4
"@flyteorg/console": ^0.0.32
"@flyteorg/console": ^0.0.33
"@types/long": ^3.0.32
long: ^4.0.0
protobufjs: ~6.11.3
Expand Down Expand Up @@ -2059,7 +2059,7 @@ __metadata:
languageName: unknown
linkType: soft

"@flyteorg/console@^0.0.32, @flyteorg/console@workspace:packages/console":
"@flyteorg/console@^0.0.33, @flyteorg/console@workspace:packages/console":
version: 0.0.0-use.local
resolution: "@flyteorg/console@workspace:packages/console"
dependencies:
Expand Down

0 comments on commit a4802e0

Please sign in to comment.