Fix duplicated editor tabs (#1012)

This commit is contained in:
Mark Sujew
2022-05-31 11:33:07 +02:00
committed by GitHub
parent 522a5c6e01
commit 5fc30bd33e
3 changed files with 18 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import { EditorManager as TheiaEditorManager } from '@theia/editor/lib/browser/editor-manager';
export class EditorManager extends TheiaEditorManager {
protected getOrCreateCounterForUri(): number {
return 0;
}
}