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

View file

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