]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/inventory/inventory.component.ts
import 15.2.9
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / inventory / inventory.component.ts
index da0f1a541a14071a98cecdc015fa137207d0e27e..d70c70ecd2ea445a37b9cbd5ef22c0d900a463e7 100644 (file)
@@ -16,6 +16,7 @@ export class InventoryComponent implements OnChanges, OnInit {
   icons = Icons;
 
   hasOrchestrator = false;
+  showDocPanel = false;
 
   devices: Array<InventoryDevice> = [];
 
@@ -24,6 +25,7 @@ export class InventoryComponent implements OnChanges, OnInit {
   ngOnInit() {
     this.orchService.status().subscribe((status) => {
       this.hasOrchestrator = status.available;
+      this.showDocPanel = !status.available;
       if (status.available) {
         this.getInventory();
       }