Fix Bug 44940

This commit is contained in:
Julia Radzhabova 2020-03-27 14:21:12 +03:00
parent 29c1dfeedc
commit 4b0b7b0472
2 changed files with 5 additions and 5 deletions

View file

@ -55,7 +55,7 @@ define([
_.extend(_options, {
width : 350,
height : 220,
height : 238,
header : true,
cls : 'modal-dlg',
contentTemplate : '',
@ -65,7 +65,7 @@ define([
}, options);
this.template = options.template || [
'<div class="box" style="height:' + (_options.height - 85) + 'px;">',
'<div class="box">',
'<div class="input-row" style="margin-bottom: 10px;">',
'<label>' + t.txtDescription + '</label>',
'</div>',
@ -76,9 +76,8 @@ define([
'<div class="input-row">',
'<label>' + t.txtRepeat + '</label>',
'</div>',
'<div id="id-repeat-txt" class="input-row"></div>',
'</div>',
'<div class="separator horizontal"/>'
'<div id="id-repeat-txt" class="input-row" style="margin-bottom: 10px;"></div>',
'</div>'
].join('');
this.handler = options.handler;

View file

@ -45,6 +45,7 @@ define([
DE.Views.StyleTitleDialog = Common.UI.Window.extend(_.extend({
options: {
width: 350,
height: 196,
style: 'min-width: 230px;',
cls: 'modal-dlg',
buttons: ['ok', 'cancel']