diff --git a/src/app/components/project-map/context-menu/actions/start-node-action/start-node-action.component.ts b/src/app/components/project-map/context-menu/actions/start-node-action/start-node-action.component.ts
index 971d1cc2..3bb39a6d 100644
--- a/src/app/components/project-map/context-menu/actions/start-node-action/start-node-action.component.ts
+++ b/src/app/components/project-map/context-menu/actions/start-node-action/start-node-action.component.ts
@@ -25,7 +25,7 @@ export class StartNodeActionComponent implements OnInit, OnChanges {
if(changes.nodes) {
this.isNodeWithStoppedStatus = false;
this.nodes.forEach((node) => {
- if (node.status === 'stopped') {
+ if (node.status === 'stopped' || node.status === 'suspended') {
this.isNodeWithStoppedStatus = true;
}
});
diff --git a/src/app/components/topology-summary/topology-summary.component.html b/src/app/components/topology-summary/topology-summary.component.html
index 27fc53c3..6d9ecc3c 100644
--- a/src/app/components/topology-summary/topology-summary.component.html
+++ b/src/app/components/topology-summary/topology-summary.component.html
@@ -50,6 +50,9 @@
+