Skip to content

Commit 782ef2c

Browse files
committed
fix #277
1 parent e2a12bf commit 782ef2c

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Obsidian Meta Bind Changelog
22

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+
39
# 1.0.1
410

511
Bug Fixes

packages/obsidian/src/settings/buttonTemplateSetting/ButtonTemplatesSettingComponent.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
{#each buttonConfigs as template}
9090
<ButtonTemplateSettingComponent
9191
plugin={modal.plugin}
92-
template={template}
92+
bind:template={template}
9393
on:delete-template={evt => deleteTemplate(evt.detail.template)}
9494
></ButtonTemplateSettingComponent>
9595
{/each}

0 commit comments

Comments
 (0)