Fix bookmarks and favourites not being filtered (#34260)

This commit is contained in:
Claire 2025-03-25 16:20:36 +01:00
commit 105e5b1d76
4 changed files with 6 additions and 1 deletions

View file

@ -8,6 +8,9 @@ export const toServerSideType = (columnType: string) => {
return columnType;
case 'detailed':
return 'thread';
case 'bookmarks':
case 'favourites':
return 'home';
default:
if (columnType.includes('list:')) {
return 'home';