Fix disabled name input in tasklist/notebook folder creation dialog (#5169)
This commit is contained in:
parent
d553105b62
commit
cd0efb5ad9
3 changed files with 3 additions and 3 deletions
|
@ -505,7 +505,7 @@ function rcube_kolab_notes_ui(settings)
|
|||
$dialog.dialog('close');
|
||||
}
|
||||
|
||||
var list = me.notebooks[id] || { name:'', editable:true };
|
||||
var list = me.notebooks[id] || { name:'', editable:true, rights: 'riwta' };
|
||||
var form, name;
|
||||
|
||||
$dialog.html(rcmail.get_label('loading'));
|
||||
|
|
|
@ -209,5 +209,5 @@ $labels['itipresponseerror'] = 'Failed to send the response to this task assignm
|
|||
$labels['itipinvalidrequest'] = 'This invitation is no longer valid';
|
||||
$labels['sentresponseto'] = 'Successfully sent assignment response to $mailto';
|
||||
$labels['successremoval'] = 'The task has been deleted successfully.';
|
||||
|
||||
$labels['invalidlistproperties'] = 'Invalid list properties! Please set a valid name.';
|
||||
$labels['arialabelsortmenu'] = 'Tasks sorting options';
|
||||
|
|
|
@ -2897,7 +2897,7 @@ function rcube_tasklist_ui(settings)
|
|||
$dialog.dialog('close');
|
||||
|
||||
if (!list)
|
||||
list = { name:'', editable:true, rights:'riwt', showalarms:true };
|
||||
list = { name:'', editable:true, rights:'riwta', showalarms:true };
|
||||
|
||||
var editform, name, alarms;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue