Remove vertical scrollbar on GLQL tables
What does this MR do and why?
Remove vertical scrollbar on GLQL tables
On hover, GLQL tables rendered a vertical scrollbar due to resizable
columns feature added recently. Add a gl-overflow-y-hidden to
prevent showing a vertical scrollbar.
Changelog: fixed
MR acceptance checklist
Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.
Screenshots or screen recordings
| Before | After |
|---|---|
|
|
How to set up and validate locally
- Enable feature flag
:glql_integration - Assign yourself some issues in a project.
- Create a new issue with the below GLQL query:
```glql
---
display: table
fields: title, milestone, assignees
---
assignee = currentUser()
```
- Save
- Hover on the table and scroll.
- There should be no vertical scrollbar visible.

