diff options
Diffstat (limited to 'web/source')
-rw-r--r-- | web/source/settings/user/profile.js | 6 | ||||
-rw-r--r-- | web/source/settings/user/settings.js | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/web/source/settings/user/profile.js b/web/source/settings/user/profile.js index 21e86ce66..dfd1eee95 100644 --- a/web/source/settings/user/profile.js +++ b/web/source/settings/user/profile.js @@ -69,14 +69,14 @@ module.exports = function UserProfile() { <div className="files"> <div> <h3>Header</h3> - <File + <File id="header" fileType="image/*" /> </div> <div> <h3>Avatar</h3> - <File + <File id="avatar" fileType="image/*" /> @@ -101,7 +101,7 @@ module.exports = function UserProfile() { id="enable_rss" name="Enable RSS feed of Public posts" /> - { !allowCustomCSS ? null : + { !allowCustomCSS ? null : <TextArea id="custom_css" name="Custom CSS" diff --git a/web/source/settings/user/settings.js b/web/source/settings/user/settings.js index ccb3e911d..3efd82ceb 100644 --- a/web/source/settings/user/settings.js +++ b/web/source/settings/user/settings.js @@ -62,7 +62,7 @@ module.exports = function UserSettings() { }> <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> </Select> - <Select id="source.status_format" name="Default post format" options={ + <Select id="source.status_format" name="Default post (and bio) format" options={ <> <option value="plain">Plain (default)</option> <option value="markdown">Markdown</option> @@ -99,7 +99,7 @@ function PasswordChange() { setError("New password and confirm new password did not match!"); return; } - + setStatus("PATCHing"); setError(""); return Promise.try(() => { |