move date to const date_format

This commit is contained in:
dklimpel 2022-02-03 16:24:54 +01:00
parent bca7de2109
commit d336558de2

View File

@ -19,6 +19,15 @@ import {
Toolbar,
} from "react-admin";
const date_format = {
year: "numeric",
month: "2-digit",
day: "2-digit",
hour: "2-digit",
minute: "2-digit",
second: "2-digit",
};
const validateToken = [regex(/^[A-Za-z0-9._~-]{0,64}$/)];
const validateUsesAllowed = [number()];
const validateLength = [number(), maxValue(64)];
@ -67,14 +76,7 @@ export const RegistrationTokenList = props => {
<DateField
source="expiry_time"
showTime
options={{
year: "numeric",
month: "2-digit",
day: "2-digit",
hour: "2-digit",
minute: "2-digit",
second: "2-digit",
}}
options={date_format}
sortable={false}
/>
</Datagrid>