diff options
| author | Sayamame-beans <61457993+Sayamame-beans@users.noreply.github.com> | 2025-03-06 16:45:46 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-06 07:45:46 +0000 |
| commit | 60a3513cfc9dff2088a8224efe085bf8e5381017 (patch) | |
| tree | 689eb31777e3780a9a3dc94e086597b29bee7b55 /packages/frontend/src/components/MkPostFormAttaches.vue | |
| parent | Bump version to 2025.3.0-beta.1 (diff) | |
| download | misskey-60a3513cfc9dff2088a8224efe085bf8e5381017.tar.gz misskey-60a3513cfc9dff2088a8224efe085bf8e5381017.tar.bz2 misskey-60a3513cfc9dff2088a8224efe085bf8e5381017.zip | |
enhance(frontend): invert how to show the number of attachments(remains) on postform (#15599)
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
Diffstat (limited to 'packages/frontend/src/components/MkPostFormAttaches.vue')
| -rw-r--r-- | packages/frontend/src/components/MkPostFormAttaches.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkPostFormAttaches.vue b/packages/frontend/src/components/MkPostFormAttaches.vue index f2d6c7e2cd..c7774d50b2 100644 --- a/packages/frontend/src/components/MkPostFormAttaches.vue +++ b/packages/frontend/src/components/MkPostFormAttaches.vue @@ -27,7 +27,7 @@ SPDX-License-Identifier: AGPL-3.0-only [$style.exceeded]: props.modelValue.length > 16, }]" > - {{ 16 - props.modelValue.length }}/16 + {{ props.modelValue.length }}/16 </p> </div> </template> |