mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
Calendar: Fix resource rows were missing in planner by user
This commit is contained in:
parent
ccbacd9b5f
commit
7e65ec48bd
@ -422,7 +422,7 @@ var et2_calendar_planner = (function(){ "use strict"; return et2_calendar_view.e
|
||||
this.invalidate();
|
||||
},this);
|
||||
}
|
||||
else if(already_added.indexOf(''+user) < 0 && parseInt(user) >= 0)
|
||||
else if(already_added.indexOf(''+user) < 0 && (isNaN(user) || parseInt(user) >= 0))
|
||||
{
|
||||
labels.push({
|
||||
id: user,
|
||||
|
Loading…
Reference in New Issue
Block a user