1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Do not expose intializing to cluster state

Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
This commit is contained in:
Lauri Nevala 2021-01-13 12:28:34 +02:00
parent 0f89d93e67
commit 74b7a228a1

View File

@ -37,7 +37,6 @@ export type ClusterRefreshOptions = {
};
export interface ClusterState {
initializing: boolean;
initialized: boolean;
enabled: boolean;
apiUrl: string;
@ -579,7 +578,6 @@ export class Cluster implements ClusterModel, ClusterState {
*/
getState(): ClusterState {
const state: ClusterState = {
initializing: this.initializing,
initialized: this.initialized,
enabled: this.enabled,
apiUrl: this.apiUrl,