more bug fixes (#485)

* more bug fixes

* remove console log
This commit is contained in:
Geometrically
2023-08-05 17:43:21 -07:00
committed by GitHub
parent d968ad383c
commit 5f0d44a881
7 changed files with 20 additions and 36 deletions

View File

@@ -247,7 +247,7 @@ async function refreshSearch() {
}
}
if (instanceContext.value) {
for (let val of results.value) {
for (let val of results.value.hits) {
val.installed = await check_installed(instanceContext.value.path, val.project_id).then(
(x) => (val.installed = x)
)