summaryrefslogtreecommitdiff
path: root/packages/client/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-02-20 16:07:43 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-02-20 16:07:43 +0900
commita1c7c1fb49f0b09aa382fa00c9883bfcd5dc5d57 (patch)
tree504eb0f64519d2b9fbbf6196a2f36db6d75646c2 /packages/client/src
parentFix ajv (#8333) (diff)
downloadmisskey-a1c7c1fb49f0b09aa382fa00c9883bfcd5dc5d57.tar.gz
misskey-a1c7c1fb49f0b09aa382fa00c9883bfcd5dc5d57.tar.bz2
misskey-a1c7c1fb49f0b09aa382fa00c9883bfcd5dc5d57.zip
remove max note text length setting
Resolve #8323
Diffstat (limited to 'packages/client/src')
-rw-r--r--packages/client/src/pages/admin/settings.vue8
1 files changed, 0 insertions, 8 deletions
diff --git a/packages/client/src/pages/admin/settings.vue b/packages/client/src/pages/admin/settings.vue
index 81204f6e2f..17f7842ab2 100644
--- a/packages/client/src/pages/admin/settings.vue
+++ b/packages/client/src/pages/admin/settings.vue
@@ -52,11 +52,6 @@
<template #caption>{{ $ts.pinnedUsersDescription }}</template>
</FormTextarea>
- <FormInput v-model="maxNoteTextLength" type="number" class="_formBlock">
- <template #prefix><i class="fas fa-pencil-alt"></i></template>
- <template #label>{{ $ts.maxNoteTextLength }}</template>
- </FormInput>
-
<FormSection>
<FormSwitch v-model="enableRegistration" class="_formBlock">
<template #label>{{ $ts.enableRegistration }}</template>
@@ -186,7 +181,6 @@ export default defineComponent({
bannerUrl: null,
backgroundImageUrl: null,
themeColor: null,
- maxNoteTextLength: 0,
enableLocalTimeline: false,
enableGlobalTimeline: false,
pinnedUsers: '',
@@ -216,7 +210,6 @@ export default defineComponent({
this.themeColor = meta.themeColor;
this.maintainerName = meta.maintainerName;
this.maintainerEmail = meta.maintainerEmail;
- this.maxNoteTextLength = meta.maxNoteTextLength;
this.enableLocalTimeline = !meta.disableLocalTimeline;
this.enableGlobalTimeline = !meta.disableGlobalTimeline;
this.pinnedUsers = meta.pinnedUsers.join('\n');
@@ -244,7 +237,6 @@ export default defineComponent({
themeColor: this.themeColor === '' ? null : this.themeColor,
maintainerName: this.maintainerName,
maintainerEmail: this.maintainerEmail,
- maxNoteTextLength: this.maxNoteTextLength,
disableLocalTimeline: !this.enableLocalTimeline,
disableGlobalTimeline: !this.enableGlobalTimeline,
pinnedUsers: this.pinnedUsers.split('\n'),