diff --git a/src/app/components/project-map/context-menu/actions/show-node-action/show-node-action.component.ts b/src/app/components/project-map/context-menu/actions/show-node-action/show-node-action.component.ts index 3fa76351..533d6ad2 100644 --- a/src/app/components/project-map/context-menu/actions/show-node-action/show-node-action.component.ts +++ b/src/app/components/project-map/context-menu/actions/show-node-action/show-node-action.component.ts @@ -17,6 +17,7 @@ export class ShowNodeActionComponent { showNode() { const dialogRef = this.dialog.open(InfoDialogComponent, { width: '600px', + maxHeight: '600px', autoFocus: false, disableClose: true }); diff --git a/src/app/services/info.service.ts b/src/app/services/info.service.ts index ed3860f4..6d944159 100644 --- a/src/app/services/info.service.ts +++ b/src/app/services/info.service.ts @@ -67,7 +67,7 @@ export class InfoService { node.node_type === "iou") { return 'Command line information is not supported for this type of node.'; } else { - if (node.status === 'started') { + if (node.command_line) { return node.command_line; } else { return 'Please start the node in order to get the command line information.';