mirror of
https://github.com/vrana/adminer.git
synced 2025-08-11 09:04:02 +02:00
Fix clicking on non-input fields in alter table
This commit is contained in:
@@ -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) {
|
||||||
|
@@ -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
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user