From bb37a09fad51062ab1f6bb91ecbf5abfa8c593e2 Mon Sep 17 00:00:00 2001 From: Winston Chang Date: Tue, 30 Oct 2012 12:28:38 -0500 Subject: [PATCH] Fix typo in code --- _includes/tutorial/dynamic-ui.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/tutorial/dynamic-ui.md b/_includes/tutorial/dynamic-ui.md index 54f4af17a..d9d28d121 100644 --- a/_includes/tutorial/dynamic-ui.md +++ b/_includes/tutorial/dynamic-ui.md @@ -33,7 +33,7 @@ The condition can also use `output` values; they work in the same way (`output.f
# Partial example
 selectInput("dataset", "Dataset", c("diamonds", "rock", "pressure", "cars")),
 conditionalPanel(
-  condition = "output.nrow",
+  condition = "output.nrows",
   checkboxInput("headonly", "Only use first 1000 rows"))
#### server.R