Skip to content

Commit

Permalink
Merge pull request #909 from trey-wallis/dev
Browse files Browse the repository at this point in the history
8.15.9
  • Loading branch information
decaf-dev authored Dec 17, 2023
2 parents c816aa7 + ef1625e commit b8a5bb1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"fundingUrl": {
"Buymeacoffee": "https://www.buymeacoffee.com/treywallis"
},
"version": "8.15.8"
"version": "8.15.9"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-dataloom",
"version": "8.15.8",
"version": "8.15.9",
"description": "Weave together data from diverse sources into different views. Inspired by Excel Spreadsheets and Notion.so.",
"main": "main.js",
"scripts": {
Expand Down
5 changes: 4 additions & 1 deletion src/react/import-app/state-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ export const addImportData = (
let newCell: Cell | null = null;
if (match) {
const { importColumnIndex } = match;
content = importRow[importColumnIndex].trim();
content = importRow[importColumnIndex];
if (content !== undefined && content !== null) {
content = content.trim();
}
}

if (type === CellType.TAG) {
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -157,5 +157,6 @@
"8.15.5": "1.4.0",
"8.15.6": "1.4.0",
"8.15.7": "1.4.0",
"8.15.8": "1.4.0"
"8.15.8": "1.4.0",
"8.15.9": "1.4.0"
}

0 comments on commit b8a5bb1

Please sign in to comment.