diff --git a/client/src/app/site/pages/meetings/pages/motions/components/motion-multiselect/services/motion-multiselect.service.ts b/client/src/app/site/pages/meetings/pages/motions/components/motion-multiselect/services/motion-multiselect.service.ts
index 2afc9cf6a8..0f7f0ac5e8 100644
--- a/client/src/app/site/pages/meetings/pages/motions/components/motion-multiselect/services/motion-multiselect.service.ts
+++ b/client/src/app/site/pages/meetings/pages/motions/components/motion-multiselect/services/motion-multiselect.service.ts
@@ -419,9 +419,11 @@ export class MotionMultiselectService {
}
return submitterIds.map(id => ({ id }));
}
+
private submitterInMotion(userId: Id, motion: ViewMotion): boolean {
return motion.submitters.some(submitter => userId == submitter.user_id);
}
+
private newSubmittersInMotion(userIds: Ids, motion: ViewMotion): Identifiable[] {
const newSubmitters: Id[] = userIds.filter(userId => !this.submitterInMotion(userId, motion));
return newSubmitters.map(id => ({ id }));
diff --git a/client/src/app/site/pages/meetings/pages/motions/pages/motion-detail/components/motion-content/motion-content.component.html b/client/src/app/site/pages/meetings/pages/motions/pages/motion-detail/components/motion-content/motion-content.component.html
index 82cd9fdf1a..23c2f060ca 100644
--- a/client/src/app/site/pages/meetings/pages/motions/pages/motion-detail/components/motion-content/motion-content.component.html
+++ b/client/src/app/site/pages/meetings/pages/motions/pages/motion-detail/components/motion-content/motion-content.component.html
@@ -183,6 +183,7 @@
placeholder="{{ 'Category' | translate }}"
[repo]="categoryRepo"
[excludeIds]="true"
+ [addClearSelection]="true"
>
diff --git a/client/src/app/ui/modules/search-selector/components/base-search-selector/base-search-selector.component.html b/client/src/app/ui/modules/search-selector/components/base-search-selector/base-search-selector.component.html
index 2df217f737..e4512c3c50 100644
--- a/client/src/app/ui/modules/search-selector/components/base-search-selector/base-search-selector.component.html
+++ b/client/src/app/ui/modules/search-selector/components/base-search-selector/base-search-selector.component.html
@@ -68,6 +68,7 @@
>
{{ noOptionsFoundLabel | translate }}
+ -