Skip to content

Commit

Permalink
Fix typo in NInput tag attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
swuecho committed Aug 28, 2024
1 parent 17ff713 commit f3e25ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/views/chat/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ const handleUsePrompt = (_: string, value: string): void => {
<NAutoComplete v-model:value="prompt" :options="searchOptions" :render-label="renderOption"
:on-select="handleSelectAutoComplete">
<template #default="{ handleInput, handleBlur, handleFocus }">
<NInput id="message_textarea" v-model:value="prompt" type="textarea" :placeholder="placeholder"
<NInput id="message_textarea" v-model:value="prompt" type="textarea" :placeholder="placeholder"
data-testid="message_textarea" :autosize="{ minRows: 1, maxRows: isMobile ? 4 : 8 }"
@input="handleInput" @focus="handleFocus" @blur="handleBlur" @keypress="handleEnter" />
</template>
Expand Down

0 comments on commit f3e25ba

Please sign in to comment.