-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: recent workflow bug on filtering executions #264
Conversation
Codecov Report
@@ Coverage Diff @@
## master #264 +/- ##
=========================================
Coverage ? 63.85%
=========================================
Files ? 370
Lines ? 8110
Branches ? 1441
=========================================
Hits ? 5179
Misses ? 2931
Partials ? 0 Continue to review full report at Codecov.
|
@@ -62,7 +62,7 @@ export const EntityVersions: React.FC<EntityVersionsProps> = ({ | |||
{ domain, project }, | |||
{ | |||
sort, | |||
filter: [...baseFilters, ...filtersState.appliedFilters], | |||
filter: baseFilters, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Pianist038801 I'm trying to understand what bug exactly was fixed. Could you please add info to description of what was going wrong, and how it is working now.
Or maybe you can record from screen broken and fixed behavior.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the filter is not needed than filtersState mentions in line 50 and line 82 can also be removed 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@anrusina That's a good catch. Just pushed fix!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Smoke-tested - works as expected.
@Professional0321 Can you please removed unneeded mentions of filtersState
in that file.
Signed-off-by: Pianist038801 <[email protected]>
5fa0e2e
to
7906c20
Compare
## [0.39.1](http://github.com/lyft/flyteconsole/compare/v0.39.0...v0.39.1) (2022-01-14) ### Bug Fixes * recent workflow bug on filtering executions ([#264](http://github.com/lyft/flyteconsole/issues/264)) #patch ([0e82355](http://github.com/lyft/flyteconsole/commit/0e823553bca31d0882c767e12235601e359a6475))
🎉 This PR is included in version 0.39.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Signed-off-by: Pianist038801 <[email protected]> Co-authored-by: Pianist038801 <[email protected]> Signed-off-by: csirius <[email protected]>
## [0.39.1](http://github.com/lyft/flyteconsole/compare/v0.39.0...v0.39.1) (2022-01-14) ### Bug Fixes * recent workflow bug on filtering executions ([#264](http://github.com/lyft/flyteconsole/issues/264)) #patch ([0e82355](http://github.com/lyft/flyteconsole/commit/0e823553bca31d0882c767e12235601e359a6475)) Signed-off-by: csirius <[email protected]>
Signed-off-by: Pianist038801 [email protected]
BUG-2065
This fixes a bug in the recent workflow versions table when filtering executions.
Type
Are all requirements met?