diff --git a/src/routes/(console)/project-[region]-[project]/auth/user-[user]/identities/+page.svelte b/src/routes/(console)/project-[region]-[project]/auth/user-[user]/identities/+page.svelte index c1d02a90fb..b87b1f3e38 100644 --- a/src/routes/(console)/project-[region]-[project]/auth/user-[user]/identities/+page.svelte +++ b/src/routes/(console)/project-[region]-[project]/auth/user-[user]/identities/+page.svelte @@ -13,18 +13,23 @@ export let data; const columns = writable([ - { id: '$id', title: 'Identity ID', type: 'string', width: 200 }, - { id: 'provider', title: 'Provider', type: 'string', width: 80 }, - { id: 'providerUid', title: 'Provider UID', type: 'string', hide: true, width: 80 }, - { id: 'providerEmail', title: 'Email', type: 'string', width: 80 }, + { id: '$id', title: 'Identity ID', type: 'string', width: { min: 200 } }, + { id: 'provider', title: 'Provider', type: 'string', width: { min: 80 } }, + { + id: 'providerUid', + title: 'Provider UID', + type: 'string', + hide: true, + width: { min: 80 } + }, + { id: 'providerEmail', title: 'Email', type: 'string', width: { min: 80 } }, { id: 'providerAccessTokenExpiry', title: 'Expiry Date', - type: 'datetime', - width: 60 + type: 'datetime' }, - { id: '$createdAt', title: 'Created', type: 'datetime', width: 80 }, - { id: '$updatedAt', title: 'Updated', type: 'datetime', hide: true, width: 80 } + { id: '$createdAt', title: 'Created', type: 'datetime', width: { min: 80 } }, + { id: '$updatedAt', title: 'Updated', type: 'datetime', hide: true, width: { min: 80 } } ]); diff --git a/src/routes/(console)/project-[region]-[project]/auth/user-[user]/identities/table.svelte b/src/routes/(console)/project-[region]-[project]/auth/user-[user]/identities/table.svelte index fa8d43c06e..e48b29b729 100644 --- a/src/routes/(console)/project-[region]-[project]/auth/user-[user]/identities/table.svelte +++ b/src/routes/(console)/project-[region]-[project]/auth/user-[user]/identities/table.svelte @@ -59,7 +59,7 @@ {/each} {#each data.identities.identities as identity (identity.$id)} - + {#each columns as column} {#if column.id === '$id'} diff --git a/src/routes/(console)/project-[region]-[project]/auth/user-[user]/targets/table.svelte b/src/routes/(console)/project-[region]-[project]/auth/user-[user]/targets/table.svelte index fcff7933cb..88bb909a50 100644 --- a/src/routes/(console)/project-[region]-[project]/auth/user-[user]/targets/table.svelte +++ b/src/routes/(console)/project-[region]-[project]/auth/user-[user]/targets/table.svelte @@ -98,7 +98,7 @@ - {selectedIds.length > 1 ? 'subscribers' : 'subscriber'} + {selectedIds.length > 1 ? 'targets' : 'target'} selected @@ -109,7 +109,7 @@ {/if} - + Are you sure you want to delete {selectedIds.length} {selectedIds.length > 1 ? 'targets' : 'target'}?