Only set taglist empty label for editable widgets

This commit is contained in:
nathangray 2018-09-28 10:49:12 -06:00
parent 0d5eba3d7d
commit 3daa25ca1a

View File

@ -145,7 +145,7 @@ var et2_selectbox = (function(){ "use strict"; return et2_inputWidget.extend(
{
this.createInputWidget();
}
if(!this.options.empty_label && this.options.multiple)
if(!this.options.empty_label && !this.options.readonly && this.options.multiple)
{
this.options.empty_label = this.egw().lang('Select some options');
}