mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
Fix full outer join bug (#1820)
Co-authored-by: sjaanus <sellinjaanus@gmail.com>
This commit is contained in:
parent
c8f6c5cc75
commit
7da461cc9f
@ -105,7 +105,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`);
|
||||
|
||||
if (featureQuery) {
|
||||
if (featureQuery.tag) {
|
||||
|
Loading…
Reference in New Issue
Block a user