Skip to content

Commit

Permalink
fix: stop changing null to empty string when reading empty title
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Nov 28, 2024
1 parent 6e9b65b commit 71b6765
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ class FeatureStrategiesStore implements IFeatureStrategiesStore {
segments: [],
sortOrder: r.sort_order,
id: r.strategy_id,
title: r.strategy_title || '',
title: r.strategy_title,
disabled: r.strategy_disabled || false,
};
if (!includeId) {
Expand Down

0 comments on commit 71b6765

Please sign in to comment.