commit 7090f0a5928f0630f86725835e00ea2206b6caad parent 117888cf59c10330671f43bbce949a3984761c91 Author: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Mon, 8 Aug 2022 11:45:24 +0200 [bugfix] Fix placeholder typo in user panel (#745) Diffstat:
M | web/source/panels/user/basic.js | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git 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>