mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
fix: databases table
This commit is contained in:
@@ -37,7 +37,7 @@
|
||||
},
|
||||
keys: ['c'],
|
||||
disabled: showCreate || isCreationDisabled || !$canWriteDatabases,
|
||||
icon: 'plus',
|
||||
icon: IconPlus,
|
||||
group: 'databases',
|
||||
rank: 10
|
||||
}
|
||||
|
||||
-2
@@ -16,9 +16,7 @@
|
||||
import RelationshipsModal from './relationshipsModal.svelte';
|
||||
import { attributes, collection, columns } from './store';
|
||||
import type { ColumnType } from '$lib/helpers/types';
|
||||
import { toLocaleDateTime } from '$lib/helpers/date';
|
||||
import { Tooltip, Table, Button, Link } from '@appwrite.io/pink-svelte';
|
||||
import { Tooltip, Table, Selector, Button, Link } from '@appwrite.io/pink-svelte';
|
||||
import DualTimeView from '$lib/components/dualTimeView.svelte';
|
||||
|
||||
export let data: PageData;
|
||||
|
||||
@@ -5,7 +5,7 @@ import { writable } from 'svelte/store';
|
||||
export const columns = writable<Column[]>(
|
||||
isCloud
|
||||
? [
|
||||
{ id: '$id', title: 'Database ID', type: 'string', width: 150 },
|
||||
{ id: '$id', title: 'Database ID', type: 'string', width: 200 },
|
||||
{ id: 'name', title: 'Name', type: 'string', width: { min: 120 } },
|
||||
{ id: 'backup', title: 'Backups', type: 'string', width: { min: 120 } },
|
||||
{ id: '$createdAt', title: 'Created', type: 'datetime', width: { min: 120 } },
|
||||
|
||||
Reference in New Issue
Block a user