From: Navin Barnwal Date: Tue, 11 May 2021 17:11:08 +0000 (+0530) Subject: mgr/dashboard: fix typo: Filesystems to File Systems X-Git-Tag: v17.1.0~1996^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e55ff44dfbbfb4687a496e284ca42848d6b17761;p=ceph.git mgr/dashboard: fix typo: Filesystems to File Systems Fixes: https://tracker.ceph.com/issues/50341 Signed-off-by: Navin Barnwal --- diff --git a/src/pybind/mgr/dashboard/frontend/cypress/integration/filesystems/filesystems.e2e-spec.ts b/src/pybind/mgr/dashboard/frontend/cypress/integration/filesystems/filesystems.e2e-spec.ts index 83f280b477ac..77b07d74103b 100644 --- a/src/pybind/mgr/dashboard/frontend/cypress/integration/filesystems/filesystems.e2e-spec.ts +++ b/src/pybind/mgr/dashboard/frontend/cypress/integration/filesystems/filesystems.e2e-spec.ts @@ -1,6 +1,6 @@ import { FilesystemsPageHelper } from './filesystems.po'; -describe('Filesystems page', () => { +describe('File Systems page', () => { const filesystems = new FilesystemsPageHelper(); beforeEach(() => { diff --git a/src/pybind/mgr/dashboard/frontend/cypress/integration/ui/navigation.po.ts b/src/pybind/mgr/dashboard/frontend/cypress/integration/ui/navigation.po.ts index 486d30dd6468..315153d956d5 100644 --- a/src/pybind/mgr/dashboard/frontend/cypress/integration/ui/navigation.po.ts +++ b/src/pybind/mgr/dashboard/frontend/cypress/integration/ui/navigation.po.ts @@ -40,7 +40,7 @@ export class NavigationPageHelper extends PageHelper { { menu: 'iSCSI', component: 'cd-iscsi' } ] }, - { menu: 'Filesystem', component: 'cd-cephfs-list' } + { menu: 'File System', component: 'cd-cephfs-list' } ]; getVerticalMenu() { diff --git a/src/pybind/mgr/dashboard/frontend/src/app/app-routing.module.ts b/src/pybind/mgr/dashboard/frontend/src/app/app-routing.module.ts index 814838345fec..0af3d7f27b3c 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/app-routing.module.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/app-routing.module.ts @@ -264,7 +264,7 @@ const routes: Routes = [ data: { breadcrumbs: true, text: 'Block', path: null }, loadChildren: () => import('./ceph/block/block.module').then((m) => m.RoutedBlockModule) }, - // Filesystems + // File Systems { path: 'cephfs', component: CephfsListComponent,