|
|
@@ -16,7 +16,7 @@ import { |
|
|
|
import { defaultPagingController } from "../SearchResults/SearchResults"; |
|
|
|
import { arrayToDateString, arrayToDayjs, decimalFormatter } from "@/app/utils/formatUtil"; |
|
|
|
import dayjs from "dayjs"; |
|
|
|
import { orderBy, uniqBy } from "lodash"; |
|
|
|
import { orderBy, uniqBy, upperFirst } from "lodash"; |
|
|
|
import { Button, Stack } from "@mui/material"; |
|
|
|
import isToday from 'dayjs/plugin/isToday'; |
|
|
|
import useUploadContext from "../UploadProvider/useUploadContext"; |
|
|
@@ -145,7 +145,7 @@ const DSOverview: React.FC<Props> = ({ type, defaultInputs }) => { |
|
|
|
name: "type", |
|
|
|
label: t("Type"), |
|
|
|
renderCell: (params) => { |
|
|
|
return t(params.type); |
|
|
|
return upperFirst(t(params.type)); |
|
|
|
}, |
|
|
|
}, |
|
|
|
// { |
|
|
|