mirror of
https://github.com/appwrite/console.git
synced 2026-04-07 19:17:46 +00:00
fix: remove identities table cell widths
The set widths were causing issues with the table as it wasn't filling the entire space and looked bad. We'll need to figure out how to make the widths look better later.
This commit is contained in:
+7
-8
@@ -13,18 +13,17 @@
|
||||
export let data;
|
||||
|
||||
const columns = writable<Column[]>([
|
||||
{ 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' },
|
||||
{ id: 'provider', title: 'Provider', type: 'string' },
|
||||
{ id: 'providerUid', title: 'Provider UID', type: 'string', hide: true },
|
||||
{ id: 'providerEmail', title: 'Email', type: 'string' },
|
||||
{
|
||||
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' },
|
||||
{ id: '$updatedAt', title: 'Updated', type: 'datetime', hide: true }
|
||||
]);
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user