Skip to content

Commit

Permalink
Don't close/close folder when New folder button is clicked
Browse files Browse the repository at this point in the history
  • Loading branch information
heyman committed Aug 4, 2024
1 parent 41da934 commit a9c962b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/folder-selector/FolderItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
:style="style"
>
<span class="name">{{ name }}</span>
<button class="new-folder" tabindex="-1" @click="$emit('new-folder')">New folder (+)</button>
<button class="new-folder" tabindex="-1" @click.stop.prevent="$emit('new-folder')">New folder (+)</button>
</div>
</template>

Expand Down

0 comments on commit a9c962b

Please sign in to comment.