]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/select/select-option.model.ts
import ceph nautilus 14.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / select / select-option.model.ts
index 5d095b58980652069f2bc7c8259d8b556220ddcb..bbd970c6fc25f35db279583c46d22419dc6d4bb4 100644 (file)
@@ -2,10 +2,12 @@ export class SelectOption {
   selected: boolean;
   name: string;
   description: string;
+  enabled: boolean;
 
-  constructor(selected: boolean, name: string, description: string) {
+  constructor(selected: boolean, name: string, description: string, enabled = true) {
     this.selected = selected;
     this.name = name;
     this.description = description;
+    this.enabled = enabled;
   }
 }