Client: Fixed first/last used for unused spools
This commit is contained in:
@@ -73,6 +73,7 @@ export const SpoolList: React.FC<IResourceComponentsProps> = () => {
|
||||
title="First Used"
|
||||
render={(value) => (
|
||||
<DateField
|
||||
hidden={!value}
|
||||
value={dayjs.utc(value).local()}
|
||||
title={dayjs.utc(value).local().format()}
|
||||
format="YYYY-MM-DD HH:mm:ss"
|
||||
@@ -84,6 +85,7 @@ export const SpoolList: React.FC<IResourceComponentsProps> = () => {
|
||||
title="Last Used"
|
||||
render={(value) => (
|
||||
<DateField
|
||||
hidden={!value}
|
||||
value={dayjs.utc(value).local()}
|
||||
title={dayjs.utc(value).local().format()}
|
||||
format="YYYY-MM-DD HH:mm:ss"
|
||||
|
||||
Reference in New Issue
Block a user