We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06d9b4f commit 2d084daCopy full SHA for 2d084da
frontend/src/utils/Utils.ts
@@ -523,7 +523,7 @@ export function getNodes<Type extends Entity | ExtendedNode>(nodesData: Array<Ty
523
return n;
524
});
525
}
526
-export function getParsedDate(neo4jdate: number) {
+export function getParsedDate(neo4jdate: filedate) {
527
const { _Date__year, _Date__month, _Date__day } = neo4jdate._DateTime__date;
528
const { _Time__hour, _Time__minute, _Time__second } = neo4jdate._DateTime__time;
529
const currentdate = new Date(`${_Date__month}/${_Date__day}/${_Date__year}`);
0 commit comments