File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
src/webviews/apps/plus/home/components Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ import { SignalWatcher } from '@lit-labs/signals';
33import type { TemplateResult } from 'lit' ;
44import { css , html , LitElement , nothing } from 'lit' ;
55import { customElement , state } from 'lit/decorators.js' ;
6- import type { BranchGitCommandArgs } from '../../../../../commands/git/branch' ;
76import { Commands } from '../../../../../constants.commands' ;
87import type { LaunchpadCommandArgs } from '../../../../../plus/launchpad/launchpad' ;
8+ import type { StartWorkCommandArgs } from '../../../../../plus/startWork/startWork' ;
99import { createCommandLink } from '../../../../../system/commands' ;
1010import { pluralize } from '../../../../../system/string' ;
1111import type { GetLaunchpadSummaryResponse , State } from '../../../../home/protocol' ;
@@ -108,13 +108,7 @@ export class GlLaunchpad extends SignalWatcher(LitElement) {
108108 } ) ;
109109
110110 get startWorkCommand ( ) {
111- return createCommandLink < BranchGitCommandArgs > ( Commands . GitCommandsBranch , {
112- state : {
113- subcommand : 'create' ,
114- } ,
115- command : 'branch' ,
116- confirm : true ,
117- } ) ;
111+ return createCommandLink < StartWorkCommandArgs > ( Commands . StartWork , { command : 'startWork' } ) ;
118112 }
119113
120114 override connectedCallback ( ) {
You can’t perform that action at this time.
0 commit comments