diff --git a/plugins/code-server/app/components/LauncherView.stories.ts b/plugins/code-server/app/components/LauncherView.stories.ts index 13ee9d8f..5cedf35b 100644 --- a/plugins/code-server/app/components/LauncherView.stories.ts +++ b/plugins/code-server/app/components/LauncherView.stories.ts @@ -46,6 +46,16 @@ export const NotInstalled: Story = { }, } +/** Short dock panel with install instructions available through scrolling. */ +export const NotInstalledShortPanel: Story = { + args: NotInstalled.args, + render: args => ({ + components: { LauncherView }, + setup: () => ({ args }), + template: '
', + }), +} + /** Installed and idle, showing the launch screen (code-server backend). */ export const Launch: Story = { args: { diff --git a/plugins/code-server/app/components/LauncherView.vue b/plugins/code-server/app/components/LauncherView.vue index 20a96790..2baccc5d 100644 --- a/plugins/code-server/app/components/LauncherView.vue +++ b/plugins/code-server/app/components/LauncherView.vue @@ -46,8 +46,8 @@ const errorText = computed(() => (props.server.status === 'error' ? props.server