fix: update title on tab (#1360)

This commit is contained in:
Alberto de la Cruz
2023-03-07 00:17:51 +01:00
committed by GitHub
parent 98ccf17196
commit 0f82851766
2 changed files with 2 additions and 2 deletions
@@ -118,7 +118,7 @@ export const EditorModeSwitch: React.FC<EditorModeSwitchProps> = ({
>
<AnimateRadioItem
isLeft={true}
label={t('Paper')}
label={t('Page')}
icon={<PaperItem />}
active={mode === 'page'}
status={radioItemStatus.left}
+1 -1
View File
@@ -5,7 +5,7 @@ import { clickPageMoreActions } from './libs/page-logic';
import { test } from './libs/playwright';
loadPage();
test.describe('Change page mode(Paper or Edgeless)', () => {
test.describe('Change page mode(Page or Edgeless)', () => {
test('Switch to edgeless by switch edgeless item', async ({ page }) => {
const switcher = page.locator('[data-testid=editor-mode-switcher]');
const box = await switcher.boundingBox();