Skip to content

Commit

Permalink
Adapt .multiSelectionResponsive to recent changes in iSEE
Browse files Browse the repository at this point in the history
  • Loading branch information
csoneson committed Jan 13, 2025
1 parent 320de69 commit d08b9e9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
export(SampleIdentificationCenter)
exportClasses(SampleIdentificationCenter)
exportMethods(.createObservers)
exportMethods(.defineDataInterface)
exportMethods(.defineOutput)
exportMethods(.definePanelTour)
exportMethods(.fullName)
exportMethods(.generateOutput)
exportMethods(.multiSelectionResponsive)
exportMethods(.panelColor)
exportMethods(.renderOutput)
exportMethods(initialize)
Expand Down
7 changes: 2 additions & 5 deletions R/panel_SampleIdentificationCenter.R
Original file line number Diff line number Diff line change
Expand Up @@ -246,11 +246,8 @@ setMethod(".renderOutput", "SampleIdentificationCenter", function(x, se, output,
# Transmission -----------------------------------------------------------------

#' @export
setMethods(".multiSelectionResponsive", "SampleIdentificationCenter", function(x, dims = character(0)){
if ("column" %in% dims) {
return(TRUE)
}
return(FALSE)
setMethod(".multiSelectionResponsive", "SampleIdentificationCenter", function(x, dim = character(0)) {
dim == "column"
})

# Tour definition --------------------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions man/SampleIdentificationCenter-class.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d08b9e9

Please sign in to comment.