diff options
| author | Tusooa Zhu <tusooa@kazv.moe> | 2022-09-07 18:36:27 -0400 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2022-12-21 23:18:14 -0500 |
| commit | a35fa29a6b12d31f403327225d4b38787fe5a0b6 (patch) | |
| tree | ba8e23baf1af8db01849d8099c0a573282e3a9ec /src/components/user_note | |
| parent | 9ab3f27f72c74a61763534eb53b92a3172bb5f5d (diff) | |
Use textarea for note input
Diffstat (limited to 'src/components/user_note')
| -rw-r--r-- | src/components/user_note/user_note.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/user_note/user_note.vue b/src/components/user_note/user_note.vue index a8f3fb10..328e2350 100644 --- a/src/components/user_note/user_note.vue +++ b/src/components/user_note/user_note.vue @@ -30,11 +30,11 @@ </button> </div> </div> - <input + <textarea v-show="editing" v-model="localNote" class="note-text" - > + /> <span v-show="!editing" class="note-text" |
