💄(frontend) add page 403

Add a page and integrate the design for the
403 error page.
This commit is contained in:
Anthony LC
2025-02-17 12:30:27 +01:00
committed by Anthony LC
parent ef8ee67553
commit f069329e18
6 changed files with 80 additions and 5 deletions

View File

@@ -221,7 +221,7 @@ test.describe('Document list members', () => {
await mySelfMoreActions.click();
await page.getByRole('button', { name: 'Delete' }).click();
await expect(
page.getByText('You do not have permission to perform this action.'),
page.getByText('You do not have permission to view this document.'),
).toBeVisible();
});
});

View File

@@ -133,7 +133,7 @@ test.describe('Doc Visibility: Restricted', () => {
await page.goto(urlDoc);
await expect(
page.getByText('You do not have permission to perform this action.'),
page.getByText('You do not have permission to view this document.'),
).toBeVisible();
});