MM-9922 Fixed CSS transition when mousing onto internal link

This commit is contained in:
Harrison Healey
2018-03-29 09:41:23 -04:00
parent d1b70863b5
commit 71dcec33a4
2 changed files with 2 additions and 7 deletions

View File

@@ -317,6 +317,7 @@ const MainPage = createReactClass({
authServerURL = `${tmpURL.protocol}//${tmpURL.host}`;
authInfo = this.state.loginQueue[0].authInfo;
}
var currentTeamURL = this.props.teams[this.state.key].url;
var modal = (
<NewTeamModal
show={this.state.showNewTeamModal}
@@ -364,7 +365,7 @@ const MainPage = createReactClass({
{ viewsRow }
</Grid>
<TransitionGroup>
{ (this.state.targetURL === '') ?
{ (this.state.targetURL === '' || this.state.targetURL.startsWith(currentTeamURL)) ?
null :
<CSSTransition
classNames='hovering'
@@ -372,7 +373,6 @@ const MainPage = createReactClass({
>
<HoveringURL
key='hoveringURL'
currentTeamURL={this.props.teams[this.state.key].url}
targetURL={this.state.targetURL}
/>
</CSSTransition>