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

Commit b8a5bb1

Browse files
authored
Merge pull request #909 from trey-wallis/dev
8.15.9
2 parents c816aa7 + ef1625e commit b8a5bb1

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"fundingUrl": {
1010
"Buymeacoffee": "https://www.buymeacoffee.com/treywallis"
1111
},
12-
"version": "8.15.8"
12+
"version": "8.15.9"
1313
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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": {

src/react/import-app/state-utils.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,10 @@ export const addImportData = (
9090
let newCell: Cell | null = null;
9191
if (match) {
9292
const { importColumnIndex } = match;
93-
content = importRow[importColumnIndex].trim();
93+
content = importRow[importColumnIndex];
94+
if (content !== undefined && content !== null) {
95+
content = content.trim();
96+
}
9497
}
9598

9699
if (type === CellType.TAG) {

versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -157,5 +157,6 @@
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
}

0 commit comments

Comments
 (0)