Fix coding style

This commit is contained in:
dklimpel 2020-03-29 20:55:26 +02:00
parent 83b313e3a6
commit 8687a18c5b
2 changed files with 24 additions and 25 deletions

View File

@ -8,7 +8,6 @@ import {
DateField, DateField,
} from "react-admin"; } from "react-admin";
export const ConnectionsShow = props => ( export const ConnectionsShow = props => (
<Show {...props}> <Show {...props}>
<SimpleForm toolbar={false}> <SimpleForm toolbar={false}>
@ -23,12 +22,12 @@ export const ConnectionsShow = props => (
source="last_seen" source="last_seen"
showTime showTime
options={{ options={{
year: 'numeric', year: "numeric",
month: '2-digit', month: "2-digit",
day: '2-digit', day: "2-digit",
hour: '2-digit', hour: "2-digit",
minute: '2-digit', minute: "2-digit",
second: '2-digit', second: "2-digit",
}} }}
sortable={false} sortable={false}
/> />