about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/compose/components/upload.jsx
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2023-04-04 10:33:44 -0400
committerGitHub <noreply@github.com>2023-04-04 16:33:44 +0200
commitec0c104bf25f2689c31bb79f9f447be1a9b3da7f (patch)
tree82f4775aa006dcbaf59769258449a14133c600db /app/javascript/mastodon/features/compose/components/upload.jsx
parenta425915ce7d1148e9505c87889936c4c497061dd (diff)
Ensure tabIndex is number instead of string (#24409)
Diffstat (limited to 'app/javascript/mastodon/features/compose/components/upload.jsx')
-rw-r--r--app/javascript/mastodon/features/compose/components/upload.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/compose/components/upload.jsx b/app/javascript/mastodon/features/compose/components/upload.jsx
index f114680b9..e3651c229 100644
--- a/app/javascript/mastodon/features/compose/components/upload.jsx
+++ b/app/javascript/mastodon/features/compose/components/upload.jsx
@@ -42,7 +42,7 @@ export default class Upload extends ImmutablePureComponent {
     const y = ((focusY / -2) + .5) * 100;
 
     return (
-      <div className='compose-form__upload' tabIndex='0' role='button'>
+      <div className='compose-form__upload' tabIndex={0} role='button'>
         <Motion defaultStyle={{ scale: 0.8 }} style={{ scale: spring(1, { stiffness: 180, damping: 12 }) }}>
           {({ scale }) => (
             <div className='compose-form__upload-thumbnail' style={{ transform: `scale(${scale})`, backgroundImage: `url(${media.get('preview_url')})`, backgroundPosition: `${x}% ${y}%` }}>