Skip to content

Commit

Permalink
fix: correct the reset event in the toolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrosman committed May 26, 2024
1 parent 631684f commit eb872c8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes
2 changes: 1 addition & 1 deletion src/components/VpToolbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const activeTool = defineModel<ToolType>('activeTool')
<div class="actions">
<button @click="emit('undo')"><img src="/src/assets/icons/undo.svg" /></button>
<button @click="emit('redo')"><img src="/src/assets/icons/redo.svg" /></button>
<button @click="emit('clear')"><img src="/src/assets/icons/clear.svg" /></button>
<button @click="emit('reset')"><img src="/src/assets/icons/reset.svg" /></button>
<button @click="emit('save')"><img src="/src/assets/icons/save.svg" /></button>
</div>
</div>
Expand Down

0 comments on commit eb872c8

Please sign in to comment.