diff options
author | 2023-09-29 13:01:36 +0200 | |
---|---|---|
committer | 2023-09-29 13:01:36 +0200 | |
commit | 736cd37caf93d89772f5b718e92d72013d0d9fc4 (patch) | |
tree | 5b7a4a412f2eba6b0b5502af2a1ec1a8c7b576a0 /web/source/settings/user/settings.js | |
parent | [chore/bugfix] Deinterface text.Formatter, allow underscores in hashtags (#2233) (diff) | |
download | gotosocial-736cd37caf93d89772f5b718e92d72013d0d9fc4.tar.xz |
[frontend] Add `discoverable` flag to settings panel (#2235)
Diffstat (limited to 'web/source/settings/user/settings.js')
-rw-r--r-- | web/source/settings/user/settings.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/source/settings/user/settings.js b/web/source/settings/user/settings.js index 431f9dba9..68483f105 100644 --- a/web/source/settings/user/settings.js +++ b/web/source/settings/user/settings.js @@ -81,7 +81,7 @@ function UserSettingsForm({ data }) { <option value="public">Public</option> </> }> - <a href="https://docs.gotosocial.org/en/latest/user_guide/posts/#privacy-settings" target="_blank" className="moreinfolink" rel="noreferrer">Learn more about post privacy settings (opens in a new tab)</a> + <a href="https://docs.gotosocial.org/en/latest/user_guide/posts/#privacy-settings" target="_blank" className="docslink" rel="noreferrer">Learn more about post privacy settings (opens in a new tab)</a> </Select> <Select field={form.statusContentType} label="Default post (and bio) format" options={ <> @@ -89,7 +89,7 @@ function UserSettingsForm({ data }) { <option value="text/markdown">Markdown</option> </> }> - <a href="https://docs.gotosocial.org/en/latest/user_guide/posts/#input-types" target="_blank" className="moreinfolink" rel="noreferrer">Learn more about post format settings (opens in a new tab)</a> + <a href="https://docs.gotosocial.org/en/latest/user_guide/posts/#input-types" target="_blank" className="docslink" rel="noreferrer">Learn more about post format settings (opens in a new tab)</a> </Select> <Checkbox field={form.isSensitive} |