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 a9b640e commit 972296dCopy full SHA for 972296d
1 file changed
js/m_visualize/Seaborn.js
@@ -308,13 +308,11 @@ define([
308
switch(tagName) {
309
case 'INPUT':
310
let inputType = $(tag).prop('type');
311
- if (inputType == 'text' || inputType == 'number' || inputType == 'hidden') {
312
- $(tag).val(value);
313
- break;
314
- }
315
if (inputType == 'checkbox') {
316
$(tag).prop('checked', value);
317
+ } else {
+ // if (inputType == 'text' || inputType == 'number' || inputType == 'hidden') {
+ $(tag).val(value);
318
}
319
break;
320
case 'TEXTAREA':
0 commit comments