mirror of
https://github.com/ycnmhd/obsidian-lineage.git
synced 2026-07-22 05:12:21 +00:00
fix: view fails to load in obsidian 1.9.10
This commit is contained in:
parent
53d916c445
commit
38b220c9f8
3 changed files with 6 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "lineage",
|
||||
"name": "Lineage",
|
||||
"version": "0.8.4",
|
||||
"version": "0.8.5",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Edit Markdown in a keyboard-centric Miller columns interface. Inspired by Gingko Writer.",
|
||||
"author": "ycnmhd",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "lineage",
|
||||
"version": "0.8.4",
|
||||
"version": "0.8.5",
|
||||
"description": "",
|
||||
"scripts": {
|
||||
"dev": "node esbuild.config.mjs",
|
||||
|
|
|
|||
|
|
@ -157,6 +157,10 @@ export class InlineEditor {
|
|||
containerEl: this.containerEl,
|
||||
app: this.view.plugin.app,
|
||||
workspace,
|
||||
history: {
|
||||
backHistory: [],
|
||||
forwardHistory: [],
|
||||
},
|
||||
} as never) as InlineMarkdownView;
|
||||
this.inlineView.save = noop;
|
||||
this.inlineView.requestSave = this.invokeAndDeleteOnChangeSubscriptions;
|
||||
|
|
|
|||
Loading…
Reference in a new issue