From: Nizamudeen A Date: Wed, 27 Mar 2024 05:12:39 +0000 (+0530) Subject: mgr/dashboard: s/active_mds/active_nfs in fs attach form X-Git-Tag: v20.0.0~2276^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F56504%2Fhead;p=ceph.git mgr/dashboard: s/active_mds/active_nfs in fs attach form Fixes: https://tracker.ceph.com/issues/65173 Signed-off-by: Nizamudeen A --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.ts b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.ts index 76fd81aa9413f..843b000b2fa12 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.ts @@ -21,7 +21,7 @@ export class CephfsMountDetailsComponent implements OnInit, OnDestroy { ngOnInit(): void { this.mount = `sudo mount -t ceph @${this.mountData?.fsId}.${this.mountData?.fsName}=${this.mountData?.rootPath} ${this.MOUNT_DIRECTORY}`; this.fuse = `sudo ceph-fuse ${this.MOUNT_DIRECTORY} -r ${this.mountData?.rootPath} --client_mds_namespace=${this.mountData?.fsName}`; - this.nfs = `sudo mount -t nfs -o port= : ${this.MOUNT_DIRECTORY}`; + this.nfs = `sudo mount -t nfs -o port= : ${this.MOUNT_DIRECTORY}`; } ngOnDestroy(): void {