mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-06-08 11:59:44 +00:00
(js) Don't load item in multi-selection mode
Also review the toolbars of the Calendar module.
This commit is contained in:
@@ -101,7 +101,7 @@
|
||||
count = (_.filter(Component.$events, function(event) { return event.selected; })).length;
|
||||
}
|
||||
if (Component.$tasks) {
|
||||
count = (_.filter(Component.$tasks, function(event) { return event.selected; })).length;
|
||||
count = (_.filter(Component.$tasks, function(task) { return task.selected; })).length;
|
||||
}
|
||||
return count;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user