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

Add missing semicolons

Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
This commit is contained in:
Lauri Nevala 2020-11-19 22:31:32 +02:00
parent c578ac52a6
commit 252fe29c9d

View File

@ -22,7 +22,7 @@ export class ExtensionsStore extends BaseStore<LensExtensionsStoreModel> {
protected state = observable.map<LensExtensionId, LensExtensionState>();
get enabledExtensions(): string[] {
return Array.from(this.state.toJS().values()).filter(ext => ext.enabled).map(ext => ext.name )
return Array.from(this.state.toJS().values()).filter(ext => ext.enabled).map(ext => ext.name );
}
protected getState(extensionLoader: ExtensionLoader) {