diff options
author | 2024-09-23 16:41:57 +0200 | |
---|---|---|
committer | 2024-09-23 16:41:57 +0200 | |
commit | 459f925391022b722ed22235bfd43665b18dca95 (patch) | |
tree | e0a45e6b1de76f9d9542a406f49b2aadbd9e165c /web/source | |
parent | [bugfix/email] Don't use plainAuth when no smtp username/password provided (#... (diff) | |
download | gotosocial-459f925391022b722ed22235bfd43665b18dca95.tar.xz |
[docs] Update readme alpha -> beta, add more feature examples (#3333)
Diffstat (limited to 'web/source')
-rw-r--r-- | web/source/settings/views/admin/instance/settings.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/source/settings/views/admin/instance/settings.tsx b/web/source/settings/views/admin/instance/settings.tsx index 8d377a6ea..c769b11ec 100644 --- a/web/source/settings/views/admin/instance/settings.tsx +++ b/web/source/settings/views/admin/instance/settings.tsx @@ -143,7 +143,7 @@ function InstanceSettingsForm({ data: instance }: InstanceSettingsFormProps) { <TextArea field={form.shortDesc} label={`Short description (markdown accepted, max ${shortDescLimit} characters)`} - placeholder="A small testing instance for the GoToSocial alpha software." + placeholder="A small testing instance for GoToSocial." autoCapitalize="sentences" rows={6} /> @@ -151,7 +151,7 @@ function InstanceSettingsForm({ data: instance }: InstanceSettingsFormProps) { <TextArea field={form.description} label={`Full description (markdown accepted, max ${descLimit} characters)`} - placeholder="A small testing instance for the GoToSocial alpha software. Just trying it out, my main instance is https://example.com" + placeholder="A small testing instance for GoToSocial. Just trying it out, my main instance is https://example.com" autoCapitalize="sentences" rows={6} /> |