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

remove code comments

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2020-11-24 10:22:35 -05:00
parent 1ae1c7ddbb
commit 24c4616051
2 changed files with 0 additions and 6 deletions

View File

@ -21,9 +21,6 @@ export abstract class ClusterFeature {
latestVersion: string;
config: any;
/**
* @observable
*/
@observable status: ClusterFeatureStatus = {
currentVersion: null,
installed: false,

View File

@ -26,9 +26,6 @@ export class ExtensionLoader {
protected instances = observable.map<LensExtensionId, LensExtension>();
protected readonly requestExtensionsChannel = "extensions:loaded";
/**
* @observable
*/
@observable isLoaded = false;
whenLoaded = when(() => this.isLoaded);