Skip to content
Snippets Groups Projects

Fix label click scrolling to top

Merged Paul Slaughter requested to merge 61246-fix-label-click-scroll-to-top into master
2 files
+ 10
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -565,6 +565,11 @@ GitLabDropdown = (function() {
!$target.data('isLink')
) {
e.stopPropagation();
// This prevents automatic scrolling to the top
if ($target.is('a')) {
return false;
}
}
return true;
Loading