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 97589a9 commit f6c739dCopy full SHA for f6c739d
static/nginxaas-azure/js/cost-calculator_v2.js
@@ -367,10 +367,7 @@
367
if (curEl.tagName.toLowerCase() === "input" || curEl.tagName.toLowerCase() === "select") {
368
curEl.value = values[elName];
369
} else {
370
- const inputEl = curEl.querySelector("input");
371
- if (inputEl) {
372
- inputEl.value = values[elName];
373
- }
+ $(curEl).children("input").first().value = values[elName];
374
}
375
});
376
};
@@ -386,10 +383,7 @@
386
383
387
384
388
385
389
390
391
392
393
394
395
0 commit comments