-
Notifications
You must be signed in to change notification settings - Fork 107
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
Workflow history scrolling issue #632
Comments
Hi @kotcrab, |
Thanks for the quick response @Assem-Uber. We didn't have |
Could it be this issue Akryum/vue-virtual-scroller#757? Perhaps requiring fixed version |
Our lockfile has always used v1.0.10, we locked the version in package.json to fix another bug that was caused by vue-virtual-scroller 1.1.2. It's possible that a dependency of 1.0.10 is causing this issue; I'm investigating this. |
Hey, so after some investigation, we were able to replicate the issue by using scrollparent 2.1.0. scrollparent ^2.0.1 is a dependency of vue-virtual-scroller, and while we have it locked at 2.0.1 in our lockfile, installing cadence-web as an NPM package means the lockfile doesn't come along with it, so it installs 2.1.0 by default. Upgrading vue-virtual-scroller to 1.1.2 fixes the history list disappearing (even with scrollparent 2.1.0), but it introduces another issue (Akryum/vue-virtual-scroller#773) where clicking on any item in the history list causes the list to snap back to the beginning. Unfortunately, the fix for this was released in vue-virtual-scroller v2.0.0-beta.6, and we do not want to perform a major version update, especially to a beta release. We've raised a PR to lock the version of scrollparent to 2.0.1 in package.json. |
Thanks @adhityamamallan I tried upgrading to
|
@kotcrab we've added an npm-shrinkwrap file and made a new release: |
It's now working correctly with |
Glad to hear your issue's been resolved; have a good weekend! |
I have scrolling issue on workflow history page after updating from
3.31.0
to3.35.4
. The problem is that after clicking any history item, the history list disappears. After checking with devtools I see the scroller div height got changed to 0px:Resizing the browser window causes this height to be updated and then it's set to some correct value:
This happens on both compact and grid view modes. Closing activity details pane also causes height to be 0px and then another window resize is needed to fix it.
I see that this 0px height is set on the component here but I'm not sure why it's done this way. I found PR #624 and then tried version
3.35.5-beta.2
but the issue is still there unfortunately.I tested it on latest Chrome and Firefox and the issue is on both browsers.
The text was updated successfully, but these errors were encountered: