mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
enabled was missing from cluster state
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
parent
287147a64d
commit
7be9ff32ce
@ -37,6 +37,7 @@ export type ClusterRefreshOptions = {
|
||||
|
||||
export interface ClusterState {
|
||||
initialized: boolean;
|
||||
enabled: boolean;
|
||||
apiUrl: string;
|
||||
online: boolean;
|
||||
disconnected: boolean;
|
||||
@ -351,6 +352,7 @@ export class Cluster implements ClusterModel, ClusterState {
|
||||
getState(): ClusterState {
|
||||
const state: ClusterState = {
|
||||
initialized: this.initialized,
|
||||
enabled: this.enabled,
|
||||
apiUrl: this.apiUrl,
|
||||
online: this.online,
|
||||
ready: this.ready,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user