fix
This commit is contained in:
parent
580545bb57
commit
d833f33eb2
1 changed files with 2 additions and 1 deletions
|
|
@ -741,7 +741,8 @@ export async function getPreviews(request: FastifyRequest<OnlyId>) {
|
|||
PRMRSecrets: []
|
||||
}
|
||||
}
|
||||
const containers = JSON.parse(stdout).filter((container) => {
|
||||
const jsonStdout = JSON.parse(stdout)
|
||||
const containers = jsonStdout.filter((container) => {
|
||||
return (
|
||||
container.Labels['coolify.configuration'] &&
|
||||
container.Labels['coolify.type'] === 'standalone-application'
|
||||
|
|
|
|||
Loading…
Reference in a new issue