diff --git a/client/src/app/site/motions/modules/motion-list/components/motion-list/motion-list.component.ts b/client/src/app/site/motions/modules/motion-list/components/motion-list/motion-list.component.ts index 63234c973..dac56e8e7 100644 --- a/client/src/app/site/motions/modules/motion-list/components/motion-list/motion-list.component.ts +++ b/client/src/app/site/motions/modules/motion-list/components/motion-list/motion-list.component.ts @@ -283,7 +283,7 @@ export class MotionListComponent extends BaseListViewComponent imple .sort((a, b) => a.weight - b.weight) .map(category => { return { - filter: 'category', + filter: 'category_id', name: category.name, condition: category.id, amountOfMotions: category.totalAmountOfMotions, @@ -315,7 +315,7 @@ export class MotionListComponent extends BaseListViewComponent imple this.addToTileInfo('Favorites', 'star', true, favoriteMotions); this.addToTileInfo('Personal notes', 'hasNotes', true, motionsWithNotes); - this.addToTileInfo('No category', 'category', null, motionsWithoutCategory); + this.addToTileInfo('No category', 'category_id', null, motionsWithoutCategory); this.createCategoryTiles(Array.from(localCategories));