Skip to content

Commit

Permalink
Fix clicking on non-input fields in alter table
Browse files Browse the repository at this point in the history
  • Loading branch information
vrana committed Dec 20, 2019
1 parent 2f7f0df commit f09003e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion adminer/static/editing.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
1 change: 1 addition & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
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
Editor: Fix focusing foreign key search in select

Expand Down

0 comments on commit f09003e

Please sign in to comment.