diff --git a/layouts/dashboard.vue b/layouts/dashboard.vue
index 33daf64d..a463938a 100644
--- a/layouts/dashboard.vue
+++ b/layouts/dashboard.vue
@@ -101,10 +101,10 @@ onUnmounted(() => {
-
+
-
+
diff --git a/test/e2e/editor.spec.ts b/test/e2e/editor.spec.ts
index 9125989a..9fe178f4 100644
--- a/test/e2e/editor.spec.ts
+++ b/test/e2e/editor.spec.ts
@@ -136,7 +136,7 @@ test.describe('editor', () => {
await page.keyboard.type('Check out [[link]] and [[My \n', { delay: 100 })
- await page.getByTestId('toggle-sidebars').click()
+ await page.getByTestId('toggle-meta').nth(0).click()
await expect(page.getByTestId('doc-references').getByRole('link')).toHaveText('My Test Doc')
})
@@ -155,7 +155,7 @@ test.describe('editor', () => {
await page.keyboard.type('# Test 2\n\nCheck out [[link]] and [[My \n', { delay: 100 })
- await page.getByTestId('toggle-sidebars').click()
+ await page.getByTestId('toggle-meta').nth(0).click()
await page.getByTestId('doc-references').getByRole('link').click()
await expect(page.getByTestId('doc-backlinks').getByRole('link')).toHaveText('Test 2')
diff --git a/test/e2e/healthchecks/index.spec.ts b/test/e2e/healthchecks/index.spec.ts
index 4fe57a76..d5690ba8 100644
--- a/test/e2e/healthchecks/index.spec.ts
+++ b/test/e2e/healthchecks/index.spec.ts
@@ -38,7 +38,7 @@ test('sets the max-width of the editor to the readability max-width setting', as
const inkContainers = await page.locator('.ink-mde-container').all()
- expect(inkContainers).toHaveLength(3)
+ expect(inkContainers).toHaveLength(2)
for (const inkContainer of inkContainers) {
await expect(inkContainer).toHaveCSS('max-width', '1000px')