Skip to content

Commit 1bf5309

Browse files
committed
Parsed timestamps in admin/accounting
1 parent 8b9c8c2 commit 1bf5309

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Unreleased
44

55
* Dropped semver and used API task-groups ordering (\#803);
6+
* Parsed timestamps in `admin/accounting` (\#803);
67

78
# 1.18.2
89

src/lib/components/admin/Accounting.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import { displayStandardErrorAlert, getAlertErrorFromResponse } from '$lib/common/errors';
44
import { sortDropdownUsers } from '$lib/components/admin/user_utilities';
55
import Paginator from '$lib/components/common/Paginator.svelte';
6+
import TimestampCell from '../jobs/TimestampCell.svelte';
67
78
/**
89
* @typedef {Object} Props
@@ -198,7 +199,7 @@
198199
<tr>
199200
<td>{row.id}</td>
200201
<td>{getUserById(row.user_id)?.email || row.user_id}</td>
201-
<td>{row.timestamp}</td>
202+
<td><TimestampCell timestamp={row.timestamp} /></td>
202203
<td>{row.num_tasks}</td>
203204
<td>{row.num_new_images}</td>
204205
</tr>

0 commit comments

Comments
 (0)