Skip to content

Commit 65fbf1e

Browse files
committed
fix(MarkersPlot): correct variable reference for order_by in JitterPlot function
- Changed reference from args$order_by to order_by for clarity
1 parent 669999b commit 65fbf1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/markersplot.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ MarkersPlot <- function(
257257
nlabel = select,
258258
...
259259
)
260-
if (!is.null(args$order_by)) {
260+
if (!is.null(order_by)) {
261261
args$order_by <- order_by
262262
}
263263
do.call(plotthis::JitterPlot, args)

0 commit comments

Comments
 (0)