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

Commit fdd035d

Browse files
committed
Merge branch 'feature-order-columns'
2 parents 4f76f3f + 554e715 commit fdd035d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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": "0.0.3",
4+
"version": "0.0.4",
55
"minAppVersion": "0.14.5",
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": "0.0.3",
3+
"version": "0.0.4",
44
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
55
"main": "main.js",
66
"scripts": {

src/components/Cell.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default function Cell(cellProperties:Cell) {
5151
const [showAdd, setShowAdd] = useState(false);
5252
const [addSelectRef, setAddSelectRef] = useState(null);
5353
const { styles, attributes } = usePopper(selectRef, selectPop);
54-
54+
LOGGER.debug(`<=> Cell.rendering dataType: ${dataType}. value: ${value.value}`);
5555
React.useEffect(() => {
5656
setDomReady(true)
5757
})
@@ -70,7 +70,6 @@ export default function Cell(cellProperties:Cell) {
7070
// timeout until event is triggered after user has stopped typing
7171
}, 1500),
7272
);
73-
LOGGER.debug(`<=Cell.handleOnChange`);
7473
};
7574

7675
function getColor() {
@@ -258,6 +257,7 @@ export default function Cell(cellProperties:Cell) {
258257
);
259258
/** Default option */
260259
default:
260+
LOGGER.warn(`Unknown data type: ${dataType}`);
261261
return <span></span>;
262262
}
263263
}

0 commit comments

Comments
 (0)