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

Commit

Permalink
Error on document websocket event #1094
Browse files Browse the repository at this point in the history
  • Loading branch information
Dunkat committed Jul 28, 2017
1 parent c70b347 commit 51a0720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/MasterWindow.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class MasterWindow extends Component {
const {includedTabsInfo} = msg;
const {master} = this.props;
includedTabsInfo && Object.keys(includedTabsInfo).map(tabId => {
const tabLayout = master.layout.tabs.filter(tab =>
const tabLayout = master.layout.tabs && master.layout.tabs.filter(tab =>
tab.tabId === tabId
)[0];
if(
Expand Down

0 comments on commit 51a0720

Please sign in to comment.