This repository was archived by the owner on Jul 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments