diff options
author | ThibG <thib@sitedethib.com> | 2020-01-06 18:22:17 +0100 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2020-01-07 16:30:53 +0100 |
commit | 5636c94fe911f670a0f51d63c915c722daf24df5 (patch) | |
tree | 56b830794b3b9ead38291e20c9197ebb3095694d /app | |
parent | 578553ba0583315751d0152344f6bdd3a1916dc9 (diff) |
[Glitch] Fix reuse of detailed status components
Port 12a9813a0cc269d7b7c72095e279f70ddb7bec6e to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/flavours/glitch/features/status/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/features/status/index.js b/app/javascript/flavours/glitch/features/status/index.js index 322f92477..411d2a88d 100644 --- a/app/javascript/flavours/glitch/features/status/index.js +++ b/app/javascript/flavours/glitch/features/status/index.js @@ -568,6 +568,7 @@ class Status extends ImmutablePureComponent { <HotKeys handlers={handlers}> <div className='focusable' tabIndex='0' aria-label={textForScreenReader(intl, status, false, !status.get('hidden'))}> <DetailedStatus + key={`details-${status.get('id')}`} status={status} settings={settings} onOpenVideo={this.handleOpenVideo} @@ -580,6 +581,7 @@ class Status extends ImmutablePureComponent { /> <ActionBar + key={`action-bar-${status.get('id')}`} status={status} onReply={this.handleReplyClick} onFavourite={this.handleFavouriteClick} |