diff options
author | 2022-08-08 11:45:24 +0200 | |
---|---|---|
committer | 2022-08-08 11:45:24 +0200 | |
commit | 7090f0a5928f0630f86725835e00ea2206b6caad (patch) | |
tree | c190f7069921574d2af8113f7196ce330ad7d90b /web/source/panels/user/basic.js | |
parent | [feature] Add first iteration of a user panel at `/user` (#736) (diff) | |
download | gotosocial-7090f0a5928f0630f86725835e00ea2206b6caad.tar.xz |
[bugfix] Fix placeholder typo in user panel (#745)
Diffstat (limited to 'web/source/panels/user/basic.js')
-rw-r--r-- | web/source/panels/user/basic.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/source/panels/user/basic.js b/web/source/panels/user/basic.js index 6891706e9..29728c0b3 100644 --- a/web/source/panels/user/basic.js +++ b/web/source/panels/user/basic.js @@ -120,11 +120,11 @@ module.exports = function Basic({oauth, account}) { </div> <div className="labelinput"> <label htmlFor="displayname">Display Name</label> - <input id="displayname" type="text" value={displayName} onChange={(e) => setDisplayName(e.target.value)} placeHolder="A GoToSocial user"/> + <input id="displayname" type="text" value={displayName} onChange={(e) => setDisplayName(e.target.value)} placeholder="A GoToSocial user"/> </div> <div className="labelinput"> <label htmlFor="bio">Bio</label> - <textarea id="bio" value={bio} onChange={(e) => setBio(e.target.value)} placeHolder="Just trying out GoToSocial, my pronouns are they/them and I like sloths."/> + <textarea id="bio" value={bio} onChange={(e) => setBio(e.target.value)} placeholder="Just trying out GoToSocial, my pronouns are they/them and I like sloths."/> </div> <div className="labelcheckbox"> <label htmlFor="locked">Manually approve follow requests</label> |