fix: comprehensive marketplace install aliases for all containers
Extended INSTALLED_ALIASES to cover all container name variants so marketplace correctly shows "Already Installed" for every deployed app. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
5008cb6d1f
commit
ac000f9899
@ -652,6 +652,13 @@ const filteredApps = computed(() => {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Sort: available apps first, installed apps at the bottom
|
||||||
|
apps.sort((a, b) => {
|
||||||
|
const aInstalled = isInstalled(a.id) ? 1 : 0
|
||||||
|
const bInstalled = isInstalled(b.id) ? 1 : 0
|
||||||
|
return aInstalled - bInstalled
|
||||||
|
})
|
||||||
|
|
||||||
return apps
|
return apps
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user