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

Moving userExtensionList() out from extension-loader

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-05-20 12:11:40 +03:00
parent 4508bfae20
commit 6b49b2c3b0

View File

@ -86,10 +86,6 @@ export class ExtensionLoader extends Singleton {
return extensions;
}
@computed get userExtensionList() {
return Array.from(this.userExtensions.values());
}
getExtensionByName(name: string): LensExtension | null {
for (const [, val] of this.instances) {
if (val.name === name) {