Fix pinning a column in web UI sometimes redirecting out of web UI (#13376)

Fix #13216
lolsob-rspec
Eugen Rochko 2020-04-02 03:12:10 +02:00 committed by GitHub
parent 61a3db761e
commit c2fc9bca81
1 changed files with 2 additions and 1 deletions

View File

@ -76,8 +76,9 @@ class ColumnHeader extends React.PureComponent {
handlePin = () => {
if (!this.props.pinned) {
this.historyBack();
this.context.router.history.replace('/');
}
this.props.onPin();
}