Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Merge pull request #8992 from NejcZdovc/hotfix/#8908-title
Browse files Browse the repository at this point in the history
Fixes tab title on tab update
  • Loading branch information
NejcZdovc authored May 22, 2017
2 parents 6be2b4b + 591f054 commit 728712d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/renderer/reducers/frameReducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ const frameReducer = (state, action, immutableAction) => {
}
}

const title = immutableAction.getIn(['changeInfo', 'title'])
// TODO fix race condition in Muon more info in #9000
const title = immutableAction.getIn(['tabValue', 'title'])
if (title != null) {
state = state.setIn(['frames', index, 'title'], title)
}
Expand Down

0 comments on commit 728712d

Please sign in to comment.