Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(files): Fix casing
Signed-off-by: Christopher Ng <[email protected]>
  • Loading branch information
Pytal authored and backportbot[bot] committed Feb 4, 2025
commit 16bd639619e05369315e22aab359e73fd8f4d90b
2 changes: 1 addition & 1 deletion apps/files/src/views/personal-files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/files/files-filtering.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
Expand Down