diff --git a/src/routes/console/project-[project]/messaging/topics/topic-[topic]/subscribers/store.ts b/src/routes/console/project-[project]/messaging/topics/topic-[topic]/subscribers/store.ts index 014bca76cf..ca6538023a 100644 --- a/src/routes/console/project-[project]/messaging/topics/topic-[topic]/subscribers/store.ts +++ b/src/routes/console/project-[project]/messaging/topics/topic-[topic]/subscribers/store.ts @@ -5,7 +5,7 @@ export const columns = writable([ { id: '$id', title: 'Subscriber ID', type: 'string', show: true, width: 140 }, { id: 'userName', title: 'Name', type: 'string', show: true, width: 100 }, { id: 'targetId', title: 'Target ID', type: 'string', show: true, width: 140 }, - { id: 'target', title: 'Target', type: 'string', show: true, width: 140 }, - { id: 'type', title: 'Type', type: 'string', show: true, width: 80 }, + { id: 'target', title: 'Target', type: 'string', show: true, filter: false, width: 140 }, + { id: 'type', title: 'Type', type: 'string', show: true, filter: false, width: 80 }, { id: '$createdAt', title: 'Created', type: 'string', show: true, width: 100 } ]);