We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b398428 commit 713e1a8Copy full SHA for 713e1a8
src/components/general/extensions/ExtensionLoader.vue
@@ -74,6 +74,11 @@ onMounted(async () => {
74
return indexBefore - indexAfter;
75
},
76
);
77
+ toExecute.sandbox.sort(
78
+ ({ "index": indexBefore }, { "index": indexAfter }) => {
79
+ return indexBefore - indexAfter;
80
+ },
81
+ );
82
83
log.debug("Initializing all enabled unrestricted extensions");
84
for (const { id, code } of toExecute.unrestricted) {
0 commit comments