mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
fix: table
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
{
|
||||
"name": "@appwrite/console",
|
||||
"version": "0.0.1",
|
||||
"engines": {
|
||||
"node": ">=16"
|
||||
},
|
||||
|
||||
+2
-2
@@ -61,7 +61,7 @@
|
||||
|
||||
<TableScroll isSticky>
|
||||
<TableHeader>
|
||||
<TableCellHead width={200} eyebrow={false}>Document ID</TableCellHead>
|
||||
<TableCellHead width={100} eyebrow={false}>Document ID</TableCellHead>
|
||||
{#each $columns.filter((n) => n.show) as column}
|
||||
{#if column.show}
|
||||
<TableCellHead eyebrow={false}>{column.title}</TableCellHead>
|
||||
@@ -72,7 +72,7 @@
|
||||
{#each data.documents.documents as document}
|
||||
<TableRowLink
|
||||
href={`${base}/console/project-${projectId}/databases/database-${databaseId}/collection-${$collection.$id}/document-${document.$id}`}>
|
||||
<TableCell width={230}>
|
||||
<TableCell>
|
||||
<Copy value={document.$id}>
|
||||
<Pill button trim>
|
||||
<span class="icon-duplicate" aria-hidden="true" />
|
||||
|
||||
Reference in New Issue
Block a user