Added memo to time ticket IO-485

This commit is contained in:
Patrick Fic
2021-02-08 13:01:21 -08:00
parent 758090f0d5
commit 6b28b5b3e5
8 changed files with 96 additions and 45 deletions

View File

@@ -98,6 +98,14 @@ export default function TimeTicketList({
sortOrder:
state.sortedInfo.columnKey === "actualhrs" && state.sortedInfo.order,
},
{
title: t("timetickets.fields.memo"),
dataIndex: "memo",
key: "memo",
sorter: (a, b) => a.memo - b.memo,
sortOrder:
state.sortedInfo.columnKey === "memo" && state.sortedInfo.order,
},
{
title: t("timetickets.fields.clockon"),
dataIndex: "clockon",