File tree Expand file tree Collapse file tree
src/vs/editor/contrib/quickAccess Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export interface IGotoSymbolQuickPickItem extends IQuickPickItem {
2727}
2828
2929export interface IGotoSymbolQuickAccessProviderOptions extends IEditorNavigationQuickAccessOptions {
30- openSideBySideDirection : ( ) => undefined | 'right' | 'down'
30+ openSideBySideDirection ? : ( ) => undefined | 'right' | 'down'
3131}
3232
3333export abstract class AbstractGotoSymbolQuickAccessProvider extends AbstractEditorNavigationQuickAccessProvider {
@@ -306,7 +306,7 @@ export abstract class AbstractGotoSymbolQuickAccessProvider extends AbstractEdit
306306 } ,
307307 strikethrough : deprecated ,
308308 buttons : ( ( ) => {
309- const openSideBySideDirection = this . options ?. openSideBySideDirection ( ) ;
309+ const openSideBySideDirection = this . options ?. openSideBySideDirection ? this . options ?. openSideBySideDirection ( ) : undefined ;
310310 if ( ! openSideBySideDirection ) {
311311 return undefined ;
312312 }
You can’t perform that action at this time.
0 commit comments