Skip to content

Commit

Permalink
Rename column to Queued At (#1302)
Browse files Browse the repository at this point in the history
  • Loading branch information
goodoldneon committed Apr 25, 2024
1 parent 8cbf295 commit 2f11095
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const columnHelper = createColumnHelper<StreamItem>();

const columns = [
columnHelper.accessor('createdAt', {
header: () => <span>Started At</span>,
header: () => <span>Queued At</span>,
cell: (props) => (
<time dateTime={fullDate(new Date(props.getValue()))} suppressHydrationWarning={true}>
{fullDate(new Date(props.getValue()))}
Expand Down

0 comments on commit 2f11095

Please sign in to comment.