Skip to content

Commit

Permalink
🐛 少しバグ修正
Browse files Browse the repository at this point in the history
  • Loading branch information
anko9801 committed May 18, 2024
1 parent 10bf029 commit 24c1fa0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/shared/MarkdownTextarea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ function changeCurrentTab(tab: TabType) {
class="px-5 py-3 box-border border-x border-b border-zinc-300 rounded-b">
<InputTextarea
v-if="currentTab === 'input'"
:auto-focus="autoFocus"
:auto-focus="props.autoFocus"
class="min-h-40 w-full"
:model-value="modelValue"
:placeholder="placeholder"
:model-value="props.modelValue"
:placeholder="props.placeholder"
@update:model-value="emit('update:modelValue', $event)" />
<MarkdownIt
v-if="currentTab === 'preview'"
Expand Down

0 comments on commit 24c1fa0

Please sign in to comment.