Skip to content

Commit

Permalink
#650: Fix task subscriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathfulSpatula committed Sep 1, 2022
1 parent 0e974ad commit 4c846ef
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/views/Task.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ class Task extends React.Component {
this.handleTrimTasks = this.handleTrimTasks.bind(this)
this.handleCsvExport = this.handleCsvExport.bind(this)
this.handleOnLoadData = this.handleOnLoadData.bind(this)
this.handleLoginRedirect = this.handleLoginRedirect.bind(this)
}

handleLoginRedirect () {
this.props.history.push('/Login/' + encodeURIComponent('Task/' + this.props.match.params.id))
}

handleSubscribe () {
Expand Down

0 comments on commit 4c846ef

Please sign in to comment.