add iconUrl to manifest

This commit is contained in:
Girish Ramakrishnan
2026-02-06 18:04:47 +01:00
parent 4461e7225f
commit 5ca2078461
9 changed files with 25 additions and 21 deletions
+4 -1
View File
@@ -165,7 +165,10 @@ async function onHashChange() {
});
}
const packageData = { ...result, appStoreId: `${appId}@${version}` };
const packageData = {
...result, // { id, creationDate, publishState, manifest, iconUrl }
appStoreId: `${appId}@${version}`
};
appInstallDialog.value.open(packageData, installedApps.value.length >= features.value.appMaxCount, domains.value);
}
}