We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2a12bf commit 782ef2cCopy full SHA for 782ef2c
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Obsidian Meta Bind Changelog
2
3
+# 1.0.2
4
+
5
+Bug Fixes
6
7
+- Fixed button templates not being saved correctly [#277](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/issues/277)
8
9
# 1.0.1
10
11
Bug Fixes
packages/obsidian/src/settings/buttonTemplateSetting/ButtonTemplatesSettingComponent.svelte
@@ -89,7 +89,7 @@
89
{#each buttonConfigs as template}
90
<ButtonTemplateSettingComponent
91
plugin={modal.plugin}
92
- template={template}
+ bind:template={template}
93
on:delete-template={evt => deleteTemplate(evt.detail.template)}
94
></ButtonTemplateSettingComponent>
95
{/each}
0 commit comments