diff options
| author | Xe Iaso <me@christine.website> | 2023-01-28 13:35:00 -0500 |
|---|---|---|
| committer | Xe Iaso <me@christine.website> | 2023-01-28 13:35:00 -0500 |
| commit | 741fd9480951eda085935568bb543732def1084d (patch) | |
| tree | 3025cdc6c4fb04e2ef08e28f2d8eacc76e10ceff | |
| parent | 06ed2f79852cadc26a052ec438488d91193ce4e5 (diff) | |
| download | xesite-741fd9480951eda085935568bb543732def1084d.tar.xz xesite-741fd9480951eda085935568bb543732def1084d.zip | |
src/frontend/mastodon_share_button: fix JSX formatting
Signed-off-by: Xe Iaso <me@christine.website>
| -rw-r--r-- | src/frontend/mastodon_share_button.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mastodon_share_button.tsx b/src/frontend/mastodon_share_button.tsx index f2129e7..744570f 100644 --- a/src/frontend/mastodon_share_button.tsx +++ b/src/frontend/mastodon_share_button.tsx @@ -27,7 +27,7 @@ ${series}${tags.innerText} @cadey@pony.social`; const instanceBox = ( <input type="text" placeholder="https://pony.social" value={defaultURL} /> ); - const tootBox = <textarea rows="6" cols="40">{tootTemplate}</textarea>; + const tootBox = <textarea rows={6} cols={40}>{tootTemplate}</textarea>; const doShare = () => { let instanceURL = instanceBox.value; |
