Skip to content

Commit 047c9eb

Browse files
committed
update: use DualTimeView.
1 parent 501f880 commit 047c9eb

File tree

1 file changed

+5
-4
lines changed
  • src/routes/(console)/project-[project]/databases/database-[database]/backups

1 file changed

+5
-4
lines changed

src/routes/(console)/project-[project]/databases/database-[database]/backups/table.svelte

+5-4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
import { Click, trackEvent } from '$lib/actions/analytics';
1616
import { copy } from '$lib/helpers/copy';
1717
import { LabelCard } from '$lib/components/index.js';
18+
import DualTimeView from '$lib/components/dualTimeView.svelte';
19+
1820
import { Dependencies } from '$lib/constants';
1921
import {
2022
ActionMenu,
@@ -181,10 +183,9 @@
181183
{@const formattedRetainedUntil = `${retainedUntil.getDate()} ${retainedUntil.toLocaleString('en-US', { month: 'short' })}, ${retainedUntil.getFullYear()} ${retainedUntil.toLocaleTimeString('en-US', { hour12: false })}`}
182184
<Table.Row.Base id={backup.$id} {root}>
183185
<Table.Cell column="backups" {root}>
184-
<Tooltip maxWidth="fit-content">
185-
<span>{cleanBackupName(backup)}</span>
186-
<span slot="tooltip">{timeFromNow(backup.$createdAt)}</span>
187-
</Tooltip>
186+
<DualTimeView time={backup.$createdAt}>
187+
{cleanBackupName(backup)}
188+
</DualTimeView>
188189
</Table.Cell>
189190
<Table.Cell column="size" {root}>
190191
{#if backup.status === 'completed'}

0 commit comments

Comments
 (0)