]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/dashboard: fix typo: Filesystems to File Systems
authorNavin Barnwal <knbarnwal@gmail.com>
Tue, 11 May 2021 17:11:08 +0000 (22:41 +0530)
committerNavin Barnwal <knbarnwal@gmail.com>
Tue, 11 May 2021 17:11:15 +0000 (22:41 +0530)
Fixes: https://tracker.ceph.com/issues/50341
Signed-off-by: Navin Barnwal <knbarnwal@gmail.com>
src/pybind/mgr/dashboard/frontend/cypress/integration/filesystems/filesystems.e2e-spec.ts
src/pybind/mgr/dashboard/frontend/cypress/integration/ui/navigation.po.ts
src/pybind/mgr/dashboard/frontend/src/app/app-routing.module.ts

index 83f280b477ac9097204d140ece13e74129849b20..77b07d74103b77e84d77d752626d7079249dd2ce 100644 (file)
@@ -1,6 +1,6 @@
 import { FilesystemsPageHelper } from './filesystems.po';
 
-describe('Filesystems page', () => {
+describe('File Systems page', () => {
   const filesystems = new FilesystemsPageHelper();
 
   beforeEach(() => {
index 486d30dd646839292e50a9775a269c686be2cca8..315153d956d56374067952c984fa36d247911c21 100644 (file)
@@ -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() {
index 814838345fecadc78c779e13656d8e16fa05b83b..0af3d7f27b3c351812f3db71b5922fc7a68a956d 100644 (file)
@@ -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,