Skip to content

Commit 103326d

Browse files
authoredAug 31, 2023
getting-started: fixed open folder link (#12857)
The commit updates the `open folder` link when no recent workspaces are present to prompt users to open a folder instead of a workspace file. Signed-off-by: vince-fugnitto <vincent.fugnitto@ericsson.com>
1 parent d7061ca commit 103326d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎packages/getting-started/src/browser/getting-started-widget.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,8 @@ export class GettingStartedWidget extends ReactWidget {
270270
<a
271271
role={'button'}
272272
tabIndex={0}
273-
onClick={this.doOpenWorkspace}
274-
onKeyDown={this.doOpenWorkspaceEnter}>
273+
onClick={this.doOpenFolder}
274+
onKeyDown={this.doOpenFolderEnter}>
275275
{nls.localizeByDefault('open a folder')}
276276
</a>
277277
{' ' + nls.localizeByDefault('to start.')}

0 commit comments

Comments
 (0)
Please sign in to comment.