(fix) At click to relationship number in INV table item card is opened from the top [SCI-9927] (#6950)

This commit is contained in:
Gregor Lasnibat 2024-01-15 15:55:59 +01:00 committed by GitHub
parent 320f2d2801
commit e323f329e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -200,7 +200,9 @@ export default {
});
} else {
// scroll to the start of a section's threshold, adjusted for the center thumb value (true center)
scrollableArea.scrollTop = foundThreshold.from - this.centerOfScrollThumb;
this.$nextTick(() => {
scrollableArea.scrollTop = foundThreshold.from - this.centerOfScrollThumb;
});
}
this.flashTitleColor(domElToScrollTo);