@lvce-editor/extension-host-worker 5.36.0 → 5.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -738,11 +738,8 @@ const {
|
|
|
738
738
|
executeCommentProvider
|
|
739
739
|
} = create$b({
|
|
740
740
|
name: 'Comment',
|
|
741
|
-
resultShape
|
|
742
|
-
|
|
743
|
-
items: {
|
|
744
|
-
type: String$1
|
|
745
|
-
}
|
|
741
|
+
resultShape() {
|
|
742
|
+
return '';
|
|
746
743
|
}
|
|
747
744
|
});
|
|
748
745
|
|
|
@@ -3173,7 +3170,8 @@ const getEnabledProviderIds = async (scheme, root) => {
|
|
|
3173
3170
|
};
|
|
3174
3171
|
const getIconDefinitions = async providerId => {
|
|
3175
3172
|
const extensions = await getExtensions();
|
|
3176
|
-
|
|
3173
|
+
const allExtensions = [...extensions, state$9.webExtensions];
|
|
3174
|
+
for (const extension of allExtensions) {
|
|
3177
3175
|
const id = extension.id.split('.');
|
|
3178
3176
|
const shortId = id[1];
|
|
3179
3177
|
if (shortId === providerId && extension['source-control-icons'] && Array.isArray(extension['source-control-icons'])) {
|