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

Commit 73dd398

Browse files
committed
beta ready
1 parent 48d31ca commit 73dd398

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,7 @@ The information you add or edit will be saved into the target obsidian note.
2525
### React UI
2626
- [react-table](https://github.com/TanStack/react-table)
2727
- [Notion Style base](https://github.com/archit-p/editable-react-table)
28+
29+
## Support
30+
If you enjoy dbfolder, consider [buy me a coffee](https://www.buymeacoffee.com/5tsytn22v9Z)
31+
[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/5tsytn22v9Z)

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
"@rollup/plugin-json": "4.1.0",
2323
"@rollup/plugin-node-resolve": "13.3.0",
2424
"@rollup/plugin-typescript": "8.3.2",
25-
"@types/jest": "27.5.0",
26-
"@types/faker": "6.6.9",
25+
"@types/jest": "27.5.1",
2726
"@testing-library/jest-dom": "5.16.4",
2827
"@testing-library/react": "12.1.2",
2928
"@types/node": "17.0.31",

src/components/Cell.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ export default function DefaultCell(cellProperties: Cell) {
129129
return <span ref={containerRef} className={`${c("md_cell")}`}></span>;
130130
/** Selector option */
131131
case DataTypes.SELECT:
132-
console.log("selector");
133132
return (
134133
<CellContext.Provider value={{ contextValue, setContextValue }}>
135134
<PopperSelectPortal

src/services/DataviewService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { getAPI, isPluginEnabled } from "obsidian-dataview";
55
import { Literal } from "obsidian-dataview/lib/data-model/value";
66
import { DvAPIInterface } from "obsidian-dataview/lib/typings/api";
77
import { DateTime } from "luxon";
8-
import NoteInfo from "./NoteInfo";
8+
import NoteInfo from "services/NoteInfo";
99
class DataviewProxy {
1010

1111
private static instance: DataviewProxy;

0 commit comments

Comments
 (0)