fix: bypass line truncation in order display when not in display mode

This commit is contained in:
Suherdy Yacob 2026-04-14 16:28:09 +07:00
parent 14b847d3ba
commit c79145faa3

View File

@ -43,6 +43,9 @@ patch(OrderDisplay.prototype, {
},
get linesToDisplay() {
if (this.props.mode !== "display") {
return this.comboSortedLines;
}
return this.comboSortedLines.slice(0, this.state.displayedCount);
}
});