@kumori/aurora-backend-handler 1.0.18 → 1.0.20
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.
|
@@ -451,7 +451,7 @@ export const getMarketplaceItems = async (
|
|
|
451
451
|
const item: MarketplaceItem = {
|
|
452
452
|
tenant: tenant.toString(),
|
|
453
453
|
name: (value as any).name,
|
|
454
|
-
logo:
|
|
454
|
+
logo: (value as any).icon,
|
|
455
455
|
description: (value as any).name,
|
|
456
456
|
version: (value as any).version,
|
|
457
457
|
requirements: { cpu, memory },
|
|
@@ -1025,7 +1025,7 @@ export const loadMarketplaceItemsForTenant = async (
|
|
|
1025
1025
|
const marketplaceItem: MarketplaceItem = {
|
|
1026
1026
|
tenant: tenant,
|
|
1027
1027
|
name: item.module,
|
|
1028
|
-
logo:
|
|
1028
|
+
logo: item.logo,
|
|
1029
1029
|
description: item.description,
|
|
1030
1030
|
version: item.version,
|
|
1031
1031
|
requirements: {
|