Admin - fix missing/incorrect filter options in user export definition

This commit is contained in:
nathangray
2019-07-10 15:50:31 -06:00
parent d0b5d50b0f
commit 0731731e27
2 changed files with 29 additions and 5 deletions

View File

@ -489,6 +489,10 @@ var et2_customfields_list = (function(){ "use strict"; return et2_valueWidget.ex
},
_setup_select_account: function(field_name, field, attrs) {
attrs.empty_label = egw.lang('Select');
if(field.account_type)
{
attrs.account_type = field.account_type;
}
return this._setup_select(field_name, field, attrs);
},