add isPreview and group reference to tab

This commit is contained in:
Logan Ramos
2022-03-18 14:15:16 -04:00
parent 1b6d264067
commit e2ce6d92a9
7 changed files with 58 additions and 29 deletions

View File

@@ -672,12 +672,12 @@ export interface IEditorTabGroupDto {
export interface IEditorTabDto {
id: string;
viewColumn: EditorGroupColumn;
label: string;
input: AnyInputDto;
editorId?: string;
isActive: boolean;
isPinned: boolean;
isPreview: boolean;
isDirty: boolean;
}