File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
utilities/developer-platform-client Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,7 @@ export async function getExtensions({
2626
2727 return extensionsToFilter . filter ( ( ext ) => {
2828 const isNeededExtensionType = extensionTypes . includes ( ext . type . toLowerCase ( ) )
29- const hasActiveVersion = developerPlatformClient . supportsDashboardManagedExtensions
30- ? ext . activeVersion && ext . activeVersion . config
31- : true
29+ const hasActiveVersion = ext . activeVersion && ext . activeVersion . config
3230 const hasDraftVersion = ext . draftVersion && ext . draftVersion . config
3331 return isNeededExtensionType && ( hasActiveVersion ?? hasDraftVersion )
3432 } )
Original file line number Diff line number Diff line change @@ -572,6 +572,7 @@ export class AppManagementClient implements DeveloperPlatformClient {
572572 uuid : mod . registrationUuid ! ,
573573 title : mod . registrationTitle ,
574574 type : mod . type ,
575+ activeVersion : mod . config ? { config : JSON . stringify ( mod . config ) } : undefined ,
575576 }
576577 if ( CONFIG_EXTENSION_IDS . includes ( registration . id ) ) {
577578 configurationRegistrations . push ( registration )
You can’t perform that action at this time.
0 commit comments