Fix filters not applying in detailed view (#34259)

This commit is contained in:
Claire 2025-03-25 14:11:49 +01:00 committed by GitHub
parent 38f5e74122
commit 8c3eeb4d29
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 34 additions and 12 deletions

View file

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