1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-20 00:08:02 +01:00

fix: project mode count even if no settings exist (#4825)

This commit is contained in:
Jaanus Sellin 2023-09-25 12:44:02 +03:00 committed by GitHub
parent f7d87a2339
commit c84f39ad7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -566,7 +566,7 @@ class ProjectStore implements IProjectStore {
)
.count(`${TABLE}.id as count`)
.from(`${TABLE}`)
.join(
.leftJoin(
`${SETTINGS_TABLE}`,
`${TABLE}.id`,
`${SETTINGS_TABLE}.project`,