You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
xavier-dev opened this issue
Feb 3, 2022
· 1 comment
· Fixed by #17337
Assignees
Labels
BugA problem or regression with an existing featurehas-prAn issue that has a pull request pending that may fix this issue. The pull request may be incompleteuiIssues relating to the user interface
When browsing a table, I can click a drop-down arrow to toggle the columns visibility. It opens a menu showing one line per column with a checkbox. When at least one of the column has a too long name or a too long comment, the menu is too large to fit on the screen and the left part is hidden. As a result, it's not possible to click on the checkboxes
To Reproduce
Steps to reproduce the behavior:
Create a table with long column names or comments
CREATETABLE `test` (
`id`intNOT NULL,
`column_with_a_very_very_long_name`intNOT NULL,
`col2`intNOT NULL COMMENT 'This columns has a very long comment.'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
ALTERTABLE`test` ADD PRIMARY KEY (`id`);
INSERT INTO`test` (`id`, `column_with_a_very_very_long_name`, `col2`) VALUES (1, 1, 1), (2, 2, 2);
Open the "Browse" tab for this table.
Click on the drop-down arrow to toggle the columns visibility
Expected behavior
The menu to toggle the columns visibility should be fully visible.
Screenshots
Server configuration
Database version: MySQL 8.0.27
PHP version: 8.1.2
phpMyAdmin version: 5.1.1
Client configuration
Browser: Chrome 97.0.4692.99
Operating system: Windows
The text was updated successfully, but these errors were encountered:
xavier-dev
added a commit
to xavier-dev/phpmyadmin
that referenced
this issue
Feb 3, 2022
williamdes
added
Bug
A problem or regression with an existing feature
ui
Issues relating to the user interface
has-pr
An issue that has a pull request pending that may fix this issue. The pull request may be incomplete
labels
Feb 3, 2022
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
BugA problem or regression with an existing featurehas-prAn issue that has a pull request pending that may fix this issue. The pull request may be incompleteuiIssues relating to the user interface
Describe the bug
When browsing a table, I can click a drop-down arrow to toggle the columns visibility. It opens a menu showing one line per column with a checkbox. When at least one of the column has a too long name or a too long comment, the menu is too large to fit on the screen and the left part is hidden. As a result, it's not possible to click on the checkboxes
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The menu to toggle the columns visibility should be fully visible.
Screenshots
Server configuration
Client configuration
The text was updated successfully, but these errors were encountered: