temporary feedback fix

This commit is contained in:
taskylizard 2023-11-13 10:10:32 +05:30
parent ec5693c2f5
commit 919f736e94
No known key found for this signature in database
GPG Key ID: 5CABA3D642DDC497

View File

@ -93,7 +93,7 @@ async function handleSubmit(type?: FeedbackType["type"]) {
<textarea v-model="feedback.message" autofocus class="input" />
<p class="desc">Contacts, so we can get back to you. (Optional)</p>
<textarea v-model="feedback.contact" class="contact-input" />
<button type="submit" class="btn btn-primary" :disabled="feedback.message.length > 10" @click="handleSubmit()">
<button type="submit" class="btn btn-primary" :disabled="feedback.message.length > 1000" @click="handleSubmit()">
Submit
</button>
</div>