MoonE

Results 55 comments of MoonE

Should the `defaults` methods be the default export in their respective modules? I pushed a commit that corrects the generated import statement in case you think that's better.

I'd prefer providing variables as a separate constructor option. As a property of the Map it feels a bit out of place.

Can you tell us the exact font-family that is used there? ![image](https://github.com/phpmyadmin/phpmyadmin/assets/4426597/18d032b9-b824-4304-84a1-4dbb300c0a1a) Looks like in your case a very wide font is being used. Too wide and it will wrap...

The problem is the fixed column width of the labels. Some other languages have even longer labels. Ideally the label width should adjust to the text width. Happens in master...

I found this in the MariaDB documentation: > the TIMESTAMP data type can hold values between '1970-01-01 00:00:01' ([UTC](https://mariadb.com/kb/en/coordinated-universal-time/)) and '2038-01-19 03:14:07' ([UTC](https://mariadb.com/kb/en/coordinated-universal-time/)) ([MariaDB 11.3](https://mariadb.com/kb/en/what-is-mariadb-113/) and earlier, 32-bit platforms )...

You can append this css: ```css #select.sqlbutton, #selectall.sqlbutton, #insert.sqlbutton, #update.sqlbutton, #delete.sqlbutton { display:none; } ``` to each of the theme files: > themes/metro/css/theme.css > themes/metro/css/theme.rtl.css > themes/original/css/theme.css > themes/original/css/theme.rtl.css >...

You could delete these lines: https://github.com/phpmyadmin/phpmyadmin/blob/11e127f3fa64adb099d765c4cae6de026954068c/templates/sql/query.twig#L27-L35

> Is there anything I can do to fix this error when entering the admine? You probably ran a sql query that took MySQL more than 120 seconds to execute....

MySQL simply can't make an update like that. Here is a little test sql, which will result in > #​1062 - Duplicate entry 'b' for key 't_name_unique' ```sql CREATE TABLE...