This repository was archived by the owner on Mar 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 99"fundingUrl" : {
1010"Buymeacoffee" : " https://www.buymeacoffee.com/treywallis"
1111},
12- "version" : " 8.15.8 "
12+ "version" : " 8.15.9 "
1313}
Original file line number Diff line number Diff line change 11{
22"name" : " obsidian-dataloom" ,
3- "version" : " 8.15.8 " ,
3+ "version" : " 8.15.9 " ,
44"description" : " Weave together data from diverse sources into different views. Inspired by Excel Spreadsheets and Notion.so." ,
55"main" : " main.js" ,
66"scripts" : {
Original file line number Diff line number Diff line change @@ -90,7 +90,10 @@ export const addImportData = (
9090let newCell : Cell | null = null ;
9191if ( match ) {
9292const { importColumnIndex } = match ;
93- content = importRow [ importColumnIndex ] . trim ( ) ;
93+ content = importRow [ importColumnIndex ] ;
94+ if ( content !== undefined && content !== null ) {
95+ content = content . trim ( ) ;
96+ }
9497}
9598
9699if ( type === CellType . TAG ) {
Original file line number Diff line number Diff line change 157157"8.15.5" : " 1.4.0" ,
158158"8.15.6" : " 1.4.0" ,
159159"8.15.7" : " 1.4.0" ,
160- "8.15.8" : " 1.4.0"
160+ "8.15.8" : " 1.4.0" ,
161+ "8.15.9" : " 1.4.0"
161162}
You can’t perform that action at this time.
0 commit comments