Fix Bug 59600

This commit is contained in:
Julia Radzhabova 2022-11-03 16:41:02 +03:00
parent dcd37e4731
commit 5067a87300

View file

@ -101,7 +101,10 @@ define([
this.checkedIndex = i;
}
}
(this.checkedIndex>=0) && this.radio[this.checkedIndex].setValue(true);
if (this.checkedIndex>=0) {
this.radio[this.checkedIndex].setValue(true);
this.currentCell = this.radio[this.checkedIndex].options.value;
}
}
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
},