Fix “Add new domain block” button using last submitted instead of current search value (#22485)
Fixes #22162
This commit is contained in:
@@ -192,7 +192,7 @@ ready(() => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
document.querySelector('a#add-instance-button')?.addEventListener('click', (e) => {
|
document.querySelector('a#add-instance-button')?.addEventListener('click', (e) => {
|
||||||
const domain = document.getElementById('by_domain')?.value;
|
const domain = document.querySelector('input[type="text"]#by_domain')?.value;
|
||||||
|
|
||||||
if (domain) {
|
if (domain) {
|
||||||
const url = new URL(event.target.href);
|
const url = new URL(event.target.href);
|
||||||
|
Reference in New Issue
Block a user