Browse Source

fix(files): Fix casing

Signed-off-by: Christopher Ng <chrng8@gmail.com>
pull/50635/head
Christopher Ng 10 months ago
committed by Andy Scherzinger
parent
commit
a447b21805
  1. 2
      apps/files/src/views/personal-files.ts
  2. 2
      cypress/e2e/files/files-filtering.cy.ts

2
apps/files/src/views/personal-files.ts

@ -12,7 +12,7 @@ export default () => {
const Navigation = getNavigation()
Navigation.register(new View({
id: 'personal',
name: t('files', 'Personal Files'),
name: t('files', 'Personal files'),
caption: t('files', 'List of your files and folders that are not shared.'),
emptyTitle: t('files', 'No personal files found'),

2
cypress/e2e/files/files-filtering.cy.ts

@ -265,7 +265,7 @@ describe('files: Filter in files list', { testIsolation: true }, () => {
// go to other view
appNavigation.views()
.findByRole('link', { name: /Personal Files/i })
.findByRole('link', { name: /personal files/i })
.click()
// wait for view changed
cy.url().should('match', /apps\/files\/personal/)

Loading…
Cancel
Save