This repository was archived by the owner on Mar 9, 2025. It is now read-only.
File tree 4 files changed +8
-4
lines changed
4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 9
9
"fundingUrl" : {
10
10
"Buymeacoffee" : " https://www.buymeacoffee.com/treywallis"
11
11
},
12
- "version" : " 8.15.8 "
12
+ "version" : " 8.15.9 "
13
13
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " obsidian-dataloom" ,
3
- "version" : " 8.15.8 " ,
3
+ "version" : " 8.15.9 " ,
4
4
"description" : " Weave together data from diverse sources into different views. Inspired by Excel Spreadsheets and Notion.so." ,
5
5
"main" : " main.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -90,7 +90,10 @@ export const addImportData = (
90
90
let newCell : Cell | null = null ;
91
91
if ( match ) {
92
92
const { importColumnIndex } = match ;
93
- content = importRow [ importColumnIndex ] . trim ( ) ;
93
+ content = importRow [ importColumnIndex ] ;
94
+ if ( content !== undefined && content !== null ) {
95
+ content = content . trim ( ) ;
96
+ }
94
97
}
95
98
96
99
if ( type === CellType . TAG ) {
Original file line number Diff line number Diff line change 157
157
"8.15.5" : " 1.4.0" ,
158
158
"8.15.6" : " 1.4.0" ,
159
159
"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"
161
162
}
You can’t perform that action at this time.
0 commit comments