We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50d0746 commit ac23491Copy full SHA for ac23491
static/nginxaas-azure/js/cost-calculator_v2.js
@@ -368,10 +368,7 @@
368
if (curEl.tagName.toLowerCase() === "input" || curEl.tagName.toLowerCase() === "select") {
369
curEl.value = values[elName];
370
} else {
371
- const inputEl = curEl.querySelector("input");
372
- if (inputEl) {
373
- inputEl.value = values[elName];
374
- }
+ $(curEl).children("input").first().value = values[elName];
375
}
376
});
377
};
@@ -387,10 +384,7 @@
387
384
388
385
389
386
390
391
392
393
394
395
396
0 commit comments