From ba174e11a3a13e847ecb458fd704d458e8d65a50 Mon Sep 17 00:00:00 2001 From: Jakub Sobolewski Date: Fri, 30 Jun 2023 14:57:36 +0200 Subject: [PATCH] fix: missing ns --- inst/examples/Button3.R | 2 +- man/Button.Rd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/inst/examples/Button3.R b/inst/examples/Button3.R index 02db36ef..87f6a060 100644 --- a/inst/examples/Button3.R +++ b/inst/examples/Button3.R @@ -33,7 +33,7 @@ ui <- function(id) { ) ) ), - textOutput("file_path") + textOutput(ns("file_path")) ) } diff --git a/man/Button.Rd b/man/Button.Rd index d96917e5..1a318837 100644 --- a/man/Button.Rd +++ b/man/Button.Rd @@ -377,7 +377,7 @@ ui <- function(id) { ) ) ), - textOutput("file_path") + textOutput(ns("file_path")) ) }