diff options
author | 2022-11-19 04:07:51 -0500 | |
---|---|---|
committer | 2022-11-19 10:07:51 +0100 | |
commit | 67106c9dc4b2139878ba1fc44ef268f0a4efd804 (patch) | |
tree | f338cf04f46b4246f6dc85a1b6f3be133f483531 /web/source/settings/user/profile.js | |
parent | [docs] Move and document logs (#1076) (diff) | |
download | gotosocial-67106c9dc4b2139878ba1fc44ef268f0a4efd804.tar.xz |
[feature] Support markdown format for Account bio/note (#1037)
* [feature] Status format also controls bio format
* test
Diffstat (limited to 'web/source/settings/user/profile.js')
-rw-r--r-- | web/source/settings/user/profile.js | 6 |
1 files changed, 3 insertions, 3 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" |