From 35e4318da753af321217d3dcb1e2464c54d1d04b Mon Sep 17 00:00:00 2001 From: OliverGray Date: Wed, 18 Sep 2024 17:02:47 +0100 Subject: [PATCH 1/2] include boxmode as valid attr --- R/utils.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/utils.R b/R/utils.R index da79d43cf2..b558e12b03 100644 --- a/R/utils.R +++ b/R/utils.R @@ -449,7 +449,7 @@ verify_attr_names <- function(p) { # some layout attributes (e.g., [x-y]axis can have trailing numbers) attrs_name_check( sub("[0-9]+$", "", names(p$x$layout)), - c(names(Schema$layout$layoutAttributes), c("barmode", "bargap", "mapType")), + c(names(Schema$layout$layoutAttributes), c("boxmode", "barmode", "bargap", "mapType")), "layout" ) attrs_name_check( From f3b75cb7065faa5b6e2b23d00f7a25053a76d57b Mon Sep 17 00:00:00 2001 From: Oliver Gray <104155026+oliver-gray@users.noreply.github.com> Date: Mon, 16 Dec 2024 17:15:11 +0000 Subject: [PATCH 2/2] Update NEWS.md with bug fix for #2476 --- NEWS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/NEWS.md b/NEWS.md index 27e654f097..6df45bbe93 100644 --- a/NEWS.md +++ b/NEWS.md @@ -11,6 +11,7 @@ ## Bug fixes * Closed #2337: Creating a new `event_data()` handler no longer causes a spurious reactive update of existing `event_data()`s. (#2339) +* Closed #2376: Removes errant boxmode warning for grouped boxplot. (#2396) # 4.10.4