Feat/company card fields (#686)
* wip * Ok * asd * Fixed cancel submit * Renamed * Fixed
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
import { humanReadableDate } from '@/utils/utils';
|
||||
import { formatToHumanReadableDate } from '@/utils/utils';
|
||||
|
||||
type OwnProps = {
|
||||
value: Date;
|
||||
};
|
||||
|
||||
export function InplaceInputDateDisplayMode({ value }: OwnProps) {
|
||||
return <div>{value && humanReadableDate(value)}</div>;
|
||||
return <div>{value && formatToHumanReadableDate(value)}</div>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user