Events View: "Main Participants" column does not (#1075)
show the full list of participants when expanded. Fixes #11805
This commit is contained in:
parent
8172e1017e
commit
04c1dc8503
@ -130,7 +130,8 @@ class EventModel(FlatBaseModel):
|
||||
handle = data[0]
|
||||
cached, value = self.get_cached_value(handle, "PARTICIPANT")
|
||||
if not cached:
|
||||
value = get_participant_from_event(self.db, data[COLUMN_HANDLE])
|
||||
value = get_participant_from_event(self.db, data[COLUMN_HANDLE],
|
||||
all_=True) # all participants
|
||||
self.set_cached_value(handle, "PARTICIPANT", value)
|
||||
return value
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user