Skip to content

Commit

Permalink
Fix motion without submitters projection (#3601)
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianjoel authored and peb-adr committed Apr 30, 2024
1 parent 59f968b commit 08044c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export class MotionSlideComponent

protected override setData(value: SlideData<MotionSlideData>): void {
super.setData(value);
const submitters = [...value.data.submitters] || [];
const submitters = value.data.submitters ? [...value.data.submitters] : [];
if (value.data.additional_submitter) {
submitters.push(value.data.additional_submitter);
}
Expand Down

0 comments on commit 08044c7

Please sign in to comment.