Skip to content

Commit 5ff7883

Browse files
committed
fix changelog + merge conflict
1 parent 6926317 commit 5ff7883

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
### Added
2424

25-
- Separate Channel properties to AxisChannel properties at config.
26-
- Move split align sort and reverse to AxisChannel
25+
- Separate AxisChannel properties from Channel properties at config.
26+
- Move split align sort and reverse from config to AxisChannel config.
2727
- Add new sorting strategy: 'byLabel'.
2828
- Enable split and align on mainAxis.
2929

src/chart/generator/plotbuilder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ std::vector<PlotBuilder::BucketSortInfo> PlotBuilder::sortedBuckets(
187187
break;
188188
case Sort::byLabel:
189189
std::ranges::stable_sort(sorted,
190-
[](const BucketInfo &lhs, const BucketInfo &rhs)
190+
[](const BucketSortInfo &lhs, const BucketSortInfo &rhs)
191191
{
192192
if (rhs.label == nullptr || lhs.label == nullptr)
193193
return lhs.label != nullptr;

0 commit comments

Comments
 (0)