Skip to content

Commit

Permalink
Update filterable columns on subscribers table
Browse files Browse the repository at this point in the history
  • Loading branch information
stnguyen90 committed Dec 20, 2023
1 parent 604b323 commit bc35253
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const columns = writable<Column[]>([
{ 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 }
]);

0 comments on commit bc35253

Please sign in to comment.