mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-26 09:53:20 +01:00
Fix "Cannot read property 'replace' of undefined" when setting multi-select with empty label to empty value
This commit is contained in:
parent
ce94f07599
commit
fd3ae9f899
@ -582,7 +582,7 @@ var et2_selectbox = (function(){ "use strict"; return et2_inputWidget.extend(
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if(this.find_multi_option(_value[i]).prop("checked", true).length == 0)
|
if(this.find_multi_option(_value).prop("checked", true).length == 0)
|
||||||
{
|
{
|
||||||
var debug_value = _value;
|
var debug_value = _value;
|
||||||
if(debug_value === null) debug_value == 'NULL';
|
if(debug_value === null) debug_value == 'NULL';
|
||||||
|
Loading…
Reference in New Issue
Block a user