[MM-9922] Hide tooltip for internal links (channels, timestamps, etc.) (#1386)

* Hide tooltip for internal links (channels, timestamps, etc.)

* Only hide tooltip for internal links on the *current* team
This commit is contained in:
Nathan Bolender
2020-10-14 11:06:11 -04:00
committed by GitHub
parent a57340cda0
commit 2198244a65

View File

@@ -526,7 +526,7 @@ export default class MainPage extends React.Component {
handleTargetURLChange = (targetURL) => {
clearTimeout(this.targetURLDisappearTimeout);
if (targetURL === '') {
if (targetURL === '' || this.parseDeeplinkURL(targetURL, [this.props.teams[this.state.key]])) { // Do not show URL for internal links on current team
// set delay to avoid momentary disappearance when hovering over multiple links
this.targetURLDisappearTimeout = setTimeout(() => {
this.setState({targetURL: ''});