Skip to content

Commit

Permalink
0.9.1002
Browse files Browse the repository at this point in the history
  • Loading branch information
jp-cen committed Aug 10, 2024
1 parent 58eabe2 commit a2b13ea
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "make-md",
"name": "MAKE.md",
"version": "0.9.1001",
"version": "0.9.1002",
"minAppVersion": "0.16.0",
"description": "Make.md brings powerful and modern note-taking features to Obsidian. Capture, organize and connect information with more flexibility without any code.",
"author": "MAKE.md",
Expand Down
2 changes: 1 addition & 1 deletion src/adapters/obsidian/filetypes/jsonAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class JSONFiletypeAdapter implements FileTypeAdapter<Record<string, any>,
}
if (fragmentType == 'label') {
const cache = await this.middleware.readTextFromFile(file.path);
const fm = safelyParseJSON(cache).label ?? {};
const fm = safelyParseJSON(cache)?.label ?? {};
const sticker = parseProperty("sticker", fm[this.plugin.superstate.settings.fmKeySticker])
const color = parseProperty("color", fm[this.plugin.superstate.settings.fmKeyColor])
const name = parseProperty("aliases", fm[this.plugin.superstate.settings.fmKeyAlias])[0]
Expand Down
5 changes: 5 additions & 0 deletions src/css/Modal/Modal.css
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,11 @@
margin: 8px;
display: flex;
}
.mk-palette-search {
display:flex;
gap: 8px;
padding: 12px;
}
.mk-palette-search input {
border:none;
background: none;
Expand Down
2 changes: 1 addition & 1 deletion styles.css

Large diffs are not rendered by default.

0 comments on commit a2b13ea

Please sign in to comment.