1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

feat(UI): resizable textarea in new/edito note, closes #747

This commit is contained in:
2024-02-04 14:38:15 +01:00
parent bb36e98beb
commit 1a0c5da2f1
5 changed files with 34 additions and 10 deletions

View File

@ -1,6 +1,6 @@
<template>
<ConfirmModal
size="medium"
size="resize"
:disable-autofocus="true"
:close-on-confirm="!!localNote.note.length"
:confirm-text="t('general.save')"
@ -52,6 +52,10 @@
v-model="localNote.note"
:mode="editorMode"
:show-line-numbers="false"
:auto-focus="true"
:height="400"
:width="640"
:resizable="true"
/>
</div>
</form>