Skip to content

Commit

Permalink
Merge pull request #855 from trey-wallis/dev
Browse files Browse the repository at this point in the history
8.12.1
  • Loading branch information
decaf-dev authored Nov 15, 2023
2 parents 9d1fbfb + 7b675f8 commit dc65efe
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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.12.0"
"version": "8.12.1"
}
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.12.0",
"version": "8.12.1",
"description": "Weave together data from diverse sources into a cohesive table view. Inspired by Excel Spreadsheets and Notion.so.",
"main": "main.js",
"scripts": {
Expand Down
7 changes: 3 additions & 4 deletions src/shared/frontmatter/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,9 @@ export const deserializeFrontmatterForCell = (
const frontmatterValue = frontmatter[frontmatterKey];
if (!frontmatterValue) return null;

const assignedType = getAssignedPropertyType(app, frontmatterKey);
if (assignedType === null) {
throw new Error("Frontmatter type is null for " + frontmatterKey);
}
const assignedType =
getAssignedPropertyType(app, frontmatterKey) ??
ObsidianPropertyType.TEXT;

const { id, tags, type } = column;

Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,5 +141,6 @@
"8.11.1": "1.2.0",
"8.11.2": "1.2.0",
"8.11.3": "1.2.0",
"8.12.0": "1.2.0"
"8.12.0": "1.2.0",
"8.12.1": "1.2.0"
}

0 comments on commit dc65efe

Please sign in to comment.