From e55ff44dfbbfb4687a496e284ca42848d6b17761 Mon Sep 17 00:00:00 2001 From: Navin Barnwal Date: Tue, 11 May 2021 22:41:08 +0530 Subject: [PATCH] mgr/dashboard: fix typo: Filesystems to File Systems Fixes: https://tracker.ceph.com/issues/50341 Signed-off-by: Navin Barnwal --- .../cypress/integration/filesystems/filesystems.e2e-spec.ts | 2 +- .../dashboard/frontend/cypress/integration/ui/navigation.po.ts | 2 +- src/pybind/mgr/dashboard/frontend/src/app/app-routing.module.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 83f280b477ac9..77b07d74103b7 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 486d30dd64683..315153d956d56 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 814838345feca..0af3d7f27b3c3 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, -- 2.39.5