1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-24 17:51:14 +02:00

fix: explicitly select feature_envs.enabled so envs.enabled doesnt overwrite

This commit is contained in:
David Leek 2025-09-18 09:15:26 +02:00
parent c2f6cfe45f
commit 9135ee9172
No known key found for this signature in database
GPG Key ID: 515EE0F1BB6D0BE1

View File

@ -124,6 +124,13 @@ export class FeatureEnvironmentStore implements IFeatureEnvironmentStore {
'default',
'development',
'production',
])
.select([
'feature_name',
'environment',
'variants',
'last_seen_at',
`${T.featureEnvs}.enabled`,
]);
}
return queryBuilder;