Fix links in transform modal not working

This commit is contained in:
jos 2019-04-02 21:30:34 +02:00
parent 8cc4bf7efa
commit 35ff268759
1 changed files with 5 additions and 2 deletions

View File

@ -167,8 +167,11 @@ function showTransformModal (node, container) {
selectrSelectFields.on('selectr.change', generateQueryFromWizard);
elem.querySelector('.pico-modal-contents').onclick = function (event) {
// prevent the first clear button from getting focus when clicking anywhere in the modal
// prevent the first clear button (in any select box) from getting
// focus when clicking anywhere in the modal. Only allow clicking links.
if (event.target.nodeName !== 'A') {
event.preventDefault();
}
};
query.value = Array.isArray(value) ? '[*]' : '@';