fix: bypass line truncation in order display when not in display mode
This commit is contained in:
parent
14b847d3ba
commit
c79145faa3
@ -43,6 +43,9 @@ patch(OrderDisplay.prototype, {
|
|||||||
},
|
},
|
||||||
|
|
||||||
get linesToDisplay() {
|
get linesToDisplay() {
|
||||||
|
if (this.props.mode !== "display") {
|
||||||
|
return this.comboSortedLines;
|
||||||
|
}
|
||||||
return this.comboSortedLines.slice(0, this.state.displayedCount);
|
return this.comboSortedLines.slice(0, this.state.displayedCount);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user