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

Commit 48d31ca

Browse files
committed
change calendar to select fixed
1 parent 0cb5b2d commit 48d31ca

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

src/components/Cell.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { CellContext } from "components/contexts/CellContext";
1010
import { c } from "helpers/StylesHelper";
1111
import CalendarPortal from "./portals/CalendarPortal";
1212
import { TableColumn } from "cdm/FolderModel";
13-
import { DataviewService } from "services/DataviewService";
1413

1514
/**
1615
* Obtain the path of the file inside cellValue

src/components/portals/PopperSelectPortal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ const PopperSelectPortal = (popperProps: PopperProps) => {
172172
>
173173
{contextValue.value && (
174174
<Relationship
175-
value={contextValue.value}
175+
value={contextValue.value.toString()}
176176
backgroundColor={getColor()}
177177
/>
178178
)}

src/components/reducers/DatabaseDispatch.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,6 @@ export function databaseReducer(state: TableDataType, action: ActionType) {
209209
* - NUMBER
210210
* - CALENDAR
211211
*/
212-
console.log("GENERIC update change");
213212
return update(state, {
214213
skipReset: { $set: true },
215214
columns: {

src/services/NoteInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default class NoteInfo {
3333
const value = this.page[property];
3434
aFile[property] = value;
3535
});
36-
/** parse the data with the type of column */
36+
/** Parse data with the type of column */
3737
columns.forEach(column => {
3838
if (aFile[column.key] !== undefined) {
3939
aFile[column.key] = DataviewService.parseLiteral(aFile[column.key], column.dataType);

0 commit comments

Comments
 (0)