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

Commit 4b97ed8

Browse files
committed
hotfix of datetime
1 parent 2680ace commit 4b97ed8

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

docs/docs/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# 2.0.1
2+
- Fixed selection problem with datetime columns introduced in 2.0.0.
13
# 2.0.0
24
### Shiny new things
35
- New style for navBar & "new row" button [ISSUE#206](https://github.com/RafaelGB/obsidian-db-folder/issues/206). Now the name of your ddbb is displayed in the navBar. To change it, just edit it into the settings.

manifest-beta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "dbfolder",
33
"name": "DB Folder",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"minAppVersion": "0.15.4",
66
"description": "Folder with the capability to store and retrieve data from a folder like database",
77
"author": "RafaelGB",

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "dbfolder",
33
"name": "DB Folder",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"minAppVersion": "0.15.4",
66
"description": "Folder with the capability to store and retrieve data from a folder like database",
77
"author": "RafaelGB",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-dbfolder",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
55
"main": "main.js",
66
"scripts": {

src/components/portals/CalendarTimePortal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ const CalendarTimePortal = (calendarTimeProps: CalendarProps) => {
4747
const el = document.getElementById("popper-container");
4848
return <Portal container={el}>{containerProps.children}</Portal>;
4949
};
50-
51-
return showDatePicker && !tableColumn.isMetadata ? (
50+
return showDatePicker &&
51+
(tableColumn.isMetadata === undefined || !tableColumn.isMetadata) ? (
5252
<div className="calendar-time">
5353
<DatePicker
5454
dateFormat="yyyy-MM-dd h:mm aa"

0 commit comments

Comments
 (0)