diff options
author | Takeshi Umeda <noel.yoshiba@gmail.com> | 2021-04-16 17:06:42 +0900 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2021-04-21 13:50:51 +0200 |
commit | b1d4f21db0d413c887978ff69aa46b3bc8ea1f3d (patch) | |
tree | 3a06236a0cd5b14a92dc7df8c47069813fbc164a /app/javascript/flavours/glitch | |
parent | 72eac238ba1160f3110fa337db51d85840c781e0 (diff) |
[Glitch] Fix not to show follow button in global suggestion
Port baed52c2a7d8f91bae3c69150005fc528387785c to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch')
-rw-r--r-- | app/javascript/flavours/glitch/components/account.js | 6 | ||||
-rw-r--r-- | app/javascript/flavours/glitch/features/compose/components/search_results.js | 6 |
2 files changed, 7 insertions, 5 deletions
diff --git a/app/javascript/flavours/glitch/components/account.js b/app/javascript/flavours/glitch/components/account.js index 23399c630..20313535b 100644 --- a/app/javascript/flavours/glitch/components/account.js +++ b/app/javascript/flavours/glitch/components/account.js @@ -87,8 +87,10 @@ class Account extends ImmutablePureComponent { let buttons; - if (onActionClick && actionIcon) { - buttons = <IconButton icon={actionIcon} title={actionTitle} onClick={this.handleAction} />; + if (onActionClick) { + if (actionIcon) { + buttons = <IconButton icon={actionIcon} title={actionTitle} onClick={this.handleAction} />; + } } else if (account.get('id') !== me && !small && account.get('relationship', null) !== null) { const following = account.getIn(['relationship', 'following']); const requested = account.getIn(['relationship', 'requested']); diff --git a/app/javascript/flavours/glitch/features/compose/components/search_results.js b/app/javascript/flavours/glitch/features/compose/components/search_results.js index f5ec65877..c7e225507 100644 --- a/app/javascript/flavours/glitch/features/compose/components/search_results.js +++ b/app/javascript/flavours/glitch/features/compose/components/search_results.js @@ -55,9 +55,9 @@ class SearchResults extends ImmutablePureComponent { <AccountContainer key={suggestion.get('account')} id={suggestion.get('account')} - actionIcon={suggestion.get('source') === 'past_interaction' && 'times'} - actionTitle={suggestion.get('source') === 'past_interaction' && intl.formatMessage(messages.dismissSuggestion)} - onActionClick={suggestion.get('source') === 'past_interaction' && dismissSuggestion} + actionIcon={suggestion.get('source') === 'past_interaction' ? 'times' : null} + actionTitle={suggestion.get('source') === 'past_interaction' ? intl.formatMessage(messages.dismissSuggestion) : null} + onActionClick={dismissSuggestion} /> ))} </div> |