From 1e55ff2377f542fa8f99a535fe1f995020640644 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Fri, 3 Dec 2021 15:48:02 +0300 Subject: [PATCH] [DE] Fix bug 54293 --- apps/documenteditor/main/app/view/FormSettings.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/view/FormSettings.js b/apps/documenteditor/main/app/view/FormSettings.js index 440628125..9c5d59d85 100644 --- a/apps/documenteditor/main/app/view/FormSettings.js +++ b/apps/documenteditor/main/app/view/FormSettings.js @@ -216,14 +216,20 @@ define([ this.chAutofit = new Common.UI.CheckBox({ 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.lockedControls.push(this.chAutofit); this.chMulti = new Common.UI.CheckBox({ 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.lockedControls.push(this.chMulti);