mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Moving lastActiveClusterId field into WorkspaceModel
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
parent
0d1b2ee68d
commit
4156f587a7
@ -12,7 +12,6 @@ export type WorkspaceId = string;
|
|||||||
export interface WorkspaceStoreModel {
|
export interface WorkspaceStoreModel {
|
||||||
workspaces: WorkspaceModel[];
|
workspaces: WorkspaceModel[];
|
||||||
currentWorkspace?: WorkspaceId;
|
currentWorkspace?: WorkspaceId;
|
||||||
lastActiveClusterId?: ClusterId;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface WorkspaceModel {
|
export interface WorkspaceModel {
|
||||||
@ -20,6 +19,7 @@ export interface WorkspaceModel {
|
|||||||
name: string;
|
name: string;
|
||||||
description?: string;
|
description?: string;
|
||||||
ownerRef?: string;
|
ownerRef?: string;
|
||||||
|
lastActiveClusterId?: ClusterId;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface WorkspaceState {
|
export interface WorkspaceState {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user