Update tabs structure

This commit is contained in:
Logan Ramos
2021-09-08 14:31:28 -04:00
parent 65a8d1234c
commit 65824647a6
2 changed files with 5 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ export interface IEditorTab {
label: string;
viewColumn: ViewColumn;
resource?: vscode.Uri;
editorId?: string;
viewId?: string;
isActive: boolean;
}
@@ -59,7 +59,7 @@ export class ExtHostEditorTabs implements IExtHostEditorTabs {
label: dto.label,
viewColumn: typeConverters.ViewColumn.to(dto.viewColumn),
resource: URI.revive(dto.resource),
editorId: dto.editorId,
viewId: dto.editorId,
isActive: dto.isActive
});
});