mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-10 17:53:36 +02:00
fix: use left join for segments to avoid nullmapping
This commit is contained in:
parent
45cd888dbf
commit
c5ba4b8ff9
@ -103,7 +103,7 @@ export default class FeatureToggleClientStore
|
||||
`fss.feature_strategy_id`,
|
||||
`fs.id`,
|
||||
)
|
||||
.fullOuterJoin('segments', `segments.id`, `fss.segment_id`);
|
||||
.leftJoin('segments', `segments.id`, `fss.segment_id`);
|
||||
|
||||
query = query.where({
|
||||
archived,
|
||||
|
Loading…
Reference in New Issue
Block a user