diff --git a/MIGRATION.md b/MIGRATION.md index 290bd195abe..609b47a9d42 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -586,7 +586,7 @@ When using a [Vite-based framework](#framework-field-mandatory), Storybook will Some settings will be overridden by storybook so that it can function properly, and the merged settings can be modified using `viteFinal` in `.storybook/main.js` (see the [Storybook Vite configuration docs](https://storybook.js.org/docs/react/builders/vite#configuration)). If you were using `viteFinal` in 6.5 to simply merge in your project's standard vite config, you can now remove it. -For Svelte projects this means that the `svelteOptions` property in the `main.js` config can be omitted in most cases, as it will be loaded automatically via the project's `vite.config.js`. An exception to this is when the project needs different Svelte options for Storybook than the Vite config provide for the application itself. +For Svelte projects this means that the `svelteOptions` property in the `main.js` config can be omitted in most cases, as it will be loaded automatically via the project's `vite.config.js`. An exception to this is when the project needs different Svelte options for Storybook than the Vite config provides for the application itself. #### Vite cache moved to node_modules/.cache/.vite-storybook diff --git a/code/lib/cli/src/automigrate/fixes/sveltekit-framework.test.ts b/code/lib/cli/src/automigrate/fixes/sveltekit-framework.test.ts index ecf7daa54e8..e24623faf51 100644 --- a/code/lib/cli/src/automigrate/fixes/sveltekit-framework.test.ts +++ b/code/lib/cli/src/automigrate/fixes/sveltekit-framework.test.ts @@ -40,7 +40,7 @@ describe('SvelteKit framework fix', () => { await expect(checkSvelteKitFramework({ packageJson, main })).resolves.toBeFalsy(); }); - describe('in SB > v7.0.0', () => { + describe('in SB >= v7.0.0', () => { it('in non-SvelteKit projects', async () => { const packageJson = { dependencies: { svelte: '^3.53.1', '@storybook/svelte-vite': '^7.0.0' }, diff --git a/code/ui/manager/src/components/sidebar/useHighlighted.ts b/code/ui/manager/src/components/sidebar/useHighlighted.ts index 5455ca25edf..6a23bbf1925 100644 --- a/code/ui/manager/src/components/sidebar/useHighlighted.ts +++ b/code/ui/manager/src/components/sidebar/useHighlighted.ts @@ -85,7 +85,6 @@ export const useHighlighted = ({ const isArrowUp = matchesKeyCode('ArrowUp', event); const isArrowDown = matchesKeyCode('ArrowDown', event); if (!(isArrowUp || isArrowDown)) return; - event.preventDefault(); const requestId = globalWindow.requestAnimationFrame(() => { globalWindow.cancelAnimationFrame(lastRequestId);