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:
parent
0f89d93e67
commit
74b7a228a1
@ -37,7 +37,6 @@ export type ClusterRefreshOptions = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export interface ClusterState {
|
export interface ClusterState {
|
||||||
initializing: boolean;
|
|
||||||
initialized: boolean;
|
initialized: boolean;
|
||||||
enabled: boolean;
|
enabled: boolean;
|
||||||
apiUrl: string;
|
apiUrl: string;
|
||||||
@ -579,7 +578,6 @@ export class Cluster implements ClusterModel, ClusterState {
|
|||||||
*/
|
*/
|
||||||
getState(): ClusterState {
|
getState(): ClusterState {
|
||||||
const state: ClusterState = {
|
const state: ClusterState = {
|
||||||
initializing: this.initializing,
|
|
||||||
initialized: this.initialized,
|
initialized: this.initialized,
|
||||||
enabled: this.enabled,
|
enabled: this.enabled,
|
||||||
apiUrl: this.apiUrl,
|
apiUrl: this.apiUrl,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user