diff --git a/client/src/app/slides/motions/motion/motion-slide-data.ts b/client/src/app/slides/motions/motion/motion-slide-data.ts
index 1badec8c7..e60ef3080 100644
--- a/client/src/app/slides/motions/motion/motion-slide-data.ts
+++ b/client/src/app/slides/motions/motion/motion-slide-data.ts
@@ -63,7 +63,7 @@ export interface MotionSlideData {
reason?: string;
is_child: boolean;
show_meta_box: boolean;
- submitter?: string[];
+ submitters?: string[];
recommender?: string;
recommendation?: string;
recommendation_extension?: string;
diff --git a/client/src/app/slides/motions/motion/motion-slide.component.html b/client/src/app/slides/motions/motion/motion-slide.component.html
index 38af8c6cf..7a594df69 100644
--- a/client/src/app/slides/motions/motion/motion-slide.component.html
+++ b/client/src/app/slides/motions/motion/motion-slide.component.html
@@ -5,7 +5,7 @@
[ngStyle]="{ 'margin-top': projector.show_header_footer ? '144px' : '94px' }"
>
-
{{ 'Submitters' | translate }}
+ 0">{{ 'Submitters' | translate }}
{{ submitter }},
@@ -34,41 +34,41 @@
-
+
+
+
diff --git a/client/src/app/slides/motions/motion/motion-slide.component.ts b/client/src/app/slides/motions/motion/motion-slide.component.ts
index 30ce6bb89..0d030af40 100644
--- a/client/src/app/slides/motions/motion/motion-slide.component.ts
+++ b/client/src/app/slides/motions/motion/motion-slide.component.ts
@@ -85,6 +85,15 @@ export class MotionSlideComponent extends BaseMotionSlideComponent 0 ||
+ (!!this.data.data.recommendation && !!this.data.data.recommender) ||
+ !!this.data.data.recommendation_referencing_motions)
+ );
+ }
+
private _scroll = 0;
@Input()