File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/vs/workbench/contrib/editSessions/browser Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -842,8 +842,8 @@ export class EditSessionsContribution extends Disposable implements IWorkbenchCo
842
842
quickPick . show ( ) ;
843
843
844
844
quickPick . onDidTriggerItemButton ( async ( e ) => {
845
- if ( e . item . description !== undefined ) {
846
- const uri = URI . isUri ( e . item . description ) ? URI . parse ( e . item . description ) : await this . commandService . executeCommand ( e . item . description ) ;
845
+ if ( e . item . documentation !== undefined ) {
846
+ const uri = URI . isUri ( e . item . documentation ) ? URI . parse ( e . item . documentation ) : await this . commandService . executeCommand ( e . item . documentation ) ;
847
847
void this . openerService . open ( uri , { openExternal : true } ) ;
848
848
}
849
849
} ) ;
@@ -910,7 +910,7 @@ class ContinueEditSessionItem implements IQuickPickItem {
910
910
public readonly command : string ,
911
911
public readonly description ?: string ,
912
912
public readonly when ?: ContextKeyExpression ,
913
- documentation ?: string ,
913
+ public readonly documentation ?: string ,
914
914
) {
915
915
if ( documentation !== undefined ) {
916
916
this . buttons = [ {
You can’t perform that action at this time.
0 commit comments