Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit bd361bb

Browse files
committed
mapped correctly metadatas
1 parent 7319dcf commit bd361bb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/components/cellTypes/MetadataTimeCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import React, { useEffect, useRef } from "react";
77

88
const MetadataTimeCell = (mdProps: CellComponentProps) => {
99
const { defaultCell } = mdProps;
10-
const { cell, column } = defaultCell;
10+
const { cell } = defaultCell;
1111
const mdRef = useRef<HTMLDivElement>();
1212
useEffect(() => {
1313
if (mdRef.current !== null) {

src/services/DataviewService.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ class DataviewProxy {
102102
break;
103103
case InputType.CALENDAR:
104104
case InputType.CALENDAR_TIME:
105+
case InputType.METATADA_TIME:
105106
parsedLiteral = this.parseToCalendar(wrapped);
106107
break;
107108
case InputType.NUMBER:

0 commit comments

Comments
 (0)