diff --git a/src/shared/components/home/instances.tsx b/src/shared/components/home/instances.tsx index e27c40bb..afdcddb4 100644 --- a/src/shared/components/home/instances.tsx +++ b/src/shared/components/home/instances.tsx @@ -102,7 +102,9 @@ export class Instances extends Component { active: isSelected, })} > - {this.itemList(instances[status])} + {status === "blocked" + ? this.itemList(instances[status], false) + : this.itemList(instances[status])} ), }))} @@ -128,7 +130,7 @@ export class Instances extends Component { ); } - itemList(items: Instance[]) { + itemList(items: Instance[], link = true) { return items.length > 0 ? (
@@ -143,9 +145,13 @@ export class Instances extends Component { {items.map(i => (
- - {i.domain} - + {link ? ( + + {i.domain}{" "} + + ) : ( + {i.domain} + )} {i.software} {i.version}