diff --git a/src/browser/components/MainPage.jsx b/src/browser/components/MainPage.jsx index 8f2def05..e2e8181c 100644 --- a/src/browser/components/MainPage.jsx +++ b/src/browser/components/MainPage.jsx @@ -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: ''});