Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.

Commit 7ba61f6

Browse files
committed
fix(table): Capilalise first letter
1 parent 5a4dd3c commit 7ba61f6

File tree

2 files changed

+3
-3
lines changed
  • aqueductcore/frontend/src

2 files changed

+3
-3
lines changed

aqueductcore/frontend/src/components/organisms/TaskListInExperimentDetails/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const TasksListColumns: readonly TasksListColumnsType[] = [
4646
},
4747
{
4848
id: "receivedAt",
49-
label: "submission Time",
49+
label: "Submission Time",
5050
format: (createdAt) =>
5151
typeof createdAt === "string" ? dateFormatter(new Date(createdAt)) : "",
5252
},
@@ -66,7 +66,7 @@ function TaskListInExperimentDetails({ experimentUuid }: { experimentUuid: Exper
6666
}
6767
},
6868
},
69-
fetchPolicy: "network-only",
69+
fetchPolicy: "network-only"
7070
});
7171
const pageInfo = {
7272
page,

aqueductcore/frontend/src/pages/TaskHistoryPage/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export const TasksListColumns: readonly TasksListColumnsType[] = [
6666
},
6767
{
6868
id: "receivedAt",
69-
label: "submission Time",
69+
label: "Submission Time",
7070
format: (createdAt) =>
7171
typeof createdAt === "string" ? dateFormatter(new Date(createdAt)) : "",
7272
},

0 commit comments

Comments
 (0)