about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/status/index.js
diff options
context:
space:
mode:
authorashleyhull-versent <ashley.hull@versent.com.au>2019-04-06 11:02:03 +0800
committerYamagishi Kazutoshi <ykzts@desire.sh>2019-04-06 12:02:03 +0900
commit2b68fe5442438ed6e19ba8f6401f1203d9768db1 (patch)
tree2084a36e1a086847324d004f889322b3d698b916 /app/javascript/mastodon/features/status/index.js
parent20d301c383c0789ec192a2c86f2df4464c99f457 (diff)
tinyfix 2: unrequired arguments (#10471)
* unrequired argument

* unrequired argument
Diffstat (limited to 'app/javascript/mastodon/features/status/index.js')
-rw-r--r--app/javascript/mastodon/features/status/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/status/index.js b/app/javascript/mastodon/features/status/index.js
index c0ea460e8..567af6be9 100644
--- a/app/javascript/mastodon/features/status/index.js
+++ b/app/javascript/mastodon/features/status/index.js
@@ -442,7 +442,7 @@ class Status extends ImmutablePureComponent {
             {ancestors}
 
             <HotKeys handlers={handlers}>
-              <div className={classNames('focusable', 'detailed-status__wrapper')} tabIndex='0' aria-label={textForScreenReader(intl, status, false, !status.get('hidden'))}>
+              <div className={classNames('focusable', 'detailed-status__wrapper')} tabIndex='0' aria-label={textForScreenReader(intl, status, false)}>
                 <DetailedStatus
                   status={status}
                   onOpenVideo={this.handleOpenVideo}