Bladeren bron

Fixes incorrect id for rebase editor

main
Eric Amodio 1 jaar geleden
bovenliggende
commit
835d1f6d86
3 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen
  1. +1
    -1
      src/constants.ts
  2. +1
    -1
      src/eventBus.ts
  3. +1
    -1
      src/webviews/rebase/rebaseEditor.ts

+ 1
- 1
src/constants.ts Bestand weergeven

@ -300,7 +300,7 @@ export const enum Commands {
Deprecated_ShowFileHistoryInView = 'gitlens.showFileHistoryInView',
}
export type CustomEditorIds = 'rebaseEditor';
export type CustomEditorIds = 'rebase';
export type WebviewIds = 'graph' | 'settings' | 'timeline' | 'welcome' | 'focus';
export type WebviewViewIds = 'commitDetails' | 'graph' | 'home' | 'timeline';

+ 1
- 1
src/eventBus.ts Bestand weergeven

@ -40,7 +40,7 @@ interface EventBusEvent {
}
export type EventBusSource =
| 'gitlens.rebase'
| `gitlens.${CustomEditorIds}`
| `gitlens.${WebviewIds}`
| `gitlens.views.${WebviewViewIds}`
| `gitlens.views.${ViewsConfigKeys}`;

+ 1
- 1
src/webviews/rebase/rebaseEditor.ts Bestand weergeven

@ -133,7 +133,7 @@ export class RebaseEditorProvider implements CustomTextEditorProvider, Disposabl
}
private get contextKeyPrefix() {
return `gitlens:webview:rebaseEditor` as const;
return `gitlens:webview:rebase` as const;
}
get enabled(): boolean {

Laden…
Annuleren
Opslaan