File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed
Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,20 @@ export default createPlugin(
2626
2727 const getCommands = ( ) => {
2828 const commands : ( QuickPickItem & { command : string } ) [ ] = [ ] ;
29+
30+ commands . push ( {
31+ label : "Configure" ,
32+ command : "" ,
33+ kind : QuickPickItemKind . Separator ,
34+ } ) ;
35+
36+ if ( shouldShowRunSetupWizard ( ) ) {
37+ commands . push ( {
38+ label : "Run LocalStack Setup Wizard" ,
39+ command : "localstack.setup" ,
40+ } ) ;
41+ }
42+
2943 commands . push ( {
3044 label : "Manage" ,
3145 command : "" ,
@@ -51,19 +65,6 @@ export default createPlugin(
5165 command : "localstack.viewLogs" ,
5266 } ) ;
5367
54- commands . push ( {
55- label : "Configure" ,
56- command : "" ,
57- kind : QuickPickItemKind . Separator ,
58- } ) ;
59-
60- if ( shouldShowRunSetupWizard ( ) ) {
61- commands . push ( {
62- label : "Run LocalStack Setup Wizard" ,
63- command : "localstack.setup" ,
64- } ) ;
65- }
66-
6768 return commands ;
6869 } ;
6970
@@ -79,7 +80,6 @@ export default createPlugin(
7980
8081 context . subscriptions . push (
8182 commands . registerCommand ( "localstack.refreshStatusBar" , ( ) => {
82- // TODO
8383 const setupStatus = setupStatusTracker . status ( ) ;
8484 const localStackStatus = localStackStatusTracker . status ( ) ;
8585 const localStackInstalled = setupStatusTracker . statuses ( ) . isInstalled ;
You can’t perform that action at this time.
0 commit comments