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

Commit

Permalink
Window Name missing in Action Menu #1009
Browse files Browse the repository at this point in the history
  • Loading branch information
Dunkat committed Jul 17, 2017
1 parent 4989038 commit dfd73ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/actions/MenuActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export function getWindowBreadcrumb(id){
for(let i = 0; i < pathData.length; i++){
const node = pathData[i];

breadcrumbRequest(node.nodeId).then(item => {
nodePathsRequest(node.nodeId, 10).then(item => {
node.children = item.data;
req += 1;

Expand Down
2 changes: 1 addition & 1 deletion src/components/header/SubHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class Subheader extends Component {

const currentNode = breadcrumb &&
breadcrumb[breadcrumb.length - 1] &&
breadcrumb[breadcrumb.length - 1];
breadcrumb[breadcrumb.length - 1].children;

return (
<div
Expand Down

0 comments on commit dfd73ae

Please sign in to comment.