[DE] Fix bug 54293

This commit is contained in:
JuliaSvinareva 2021-12-03 15:48:02 +03:00
parent ac013b0e10
commit 1e55ff2377

View file

@ -216,14 +216,20 @@ define([
this.chAutofit = new Common.UI.CheckBox({ this.chAutofit = new Common.UI.CheckBox({
el: $markup.findById('#form-chb-autofit'), el: $markup.findById('#form-chb-autofit'),
labelText: this.textAutofit labelText: this.textAutofit,
dataHint: '1',
dataHintDirection: 'left',
dataHintOffset: 'small'
}); });
this.chAutofit.on('change', this.onChAutofit.bind(this)); this.chAutofit.on('change', this.onChAutofit.bind(this));
this.lockedControls.push(this.chAutofit); this.lockedControls.push(this.chAutofit);
this.chMulti = new Common.UI.CheckBox({ this.chMulti = new Common.UI.CheckBox({
el: $markup.findById('#form-chb-multiline'), el: $markup.findById('#form-chb-multiline'),
labelText: this.textMulti labelText: this.textMulti,
dataHint: '1',
dataHintDirection: 'left',
dataHintOffset: 'small'
}); });
this.chMulti.on('change', this.onChMulti.bind(this)); this.chMulti.on('change', this.onChMulti.bind(this));
this.lockedControls.push(this.chMulti); this.lockedControls.push(this.chMulti);