1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 15:47:00 +02:00

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) {
var el = getTarget(event);
if (!isTag(el, 'input')) {
el = parentTag(target, 'label');
el = parentTag(el, 'label');
el = el && qs('input', el);
}
if (el) {