Changed push to unshift to make extension version and type appear first

This commit is contained in:
Bankminer78 2024-07-18 12:11:17 -04:00
parent 81ed9ad3f8
commit 6ab31019ff

View File

@ -93,7 +93,7 @@ export class ExtensionManager {
}
: {};
results.push(extensionInfos);
results.unshift(extensionInfos);
return Object.assign({}, ...results);
}