Fix clicking on non-input fields in alter table

This commit is contained in:
Jakub Vrana 2019-12-20 13:25:08 +01:00
parent 2f7f0df09f
commit f09003ea4b
2 changed files with 2 additions and 1 deletions

View file

@ -214,7 +214,7 @@ function idfEscape(s) {
function editingClick(event) { function editingClick(event) {
var el = getTarget(event); var el = getTarget(event);
if (!isTag(el, 'input')) { if (!isTag(el, 'input')) {
el = parentTag(target, 'label'); el = parentTag(el, 'label');
el = el && qs('input', el); el = el && qs('input', el);
} }
if (el) { if (el) {

View file

@ -1,4 +1,5 @@
Adminer 4.7.6-dev: Adminer 4.7.6-dev:
Fix clicking on non-input fields in alter table (regression from 4.6.2)
MySQL: Always set foreign_key_checks in export MySQL: Always set foreign_key_checks in export
Editor: Fix focusing foreign key search in select Editor: Fix focusing foreign key search in select