Skip to content

Commit 24490df

Browse files
authored
Update ui.R
1 parent a546d69 commit 24490df

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

app/ui.R

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ ui <- navbarPage(
5757
condition = "input.ibm_data == false", # Condition to display disease selection
5858
selectInput(
5959
"disease_name",
60-
"Select Disease:",
60+
"Select Crop Disease:",
6161
choices = c(
6262
"Tar Spot (Corn)" = 'tarspot',
6363
"Gray Leaf Spot (Corn)" = 'gls',
64-
"Frogeye Leaf Spot (Soybean)" = 'fe',
64+
"Frogeye Leaf Spot (Corn)" = 'fe',
6565
"Whitemold Irr 30in (Soybean)" = 'whitemold_irr_30in',
6666
"Whitemold Irr 15in (Soybean)" = 'whitemold_irr_15in',
6767
"Whitemold Dry (Soybean)" = 'whitemold_nirr'
@@ -176,14 +176,17 @@ ui <- navbarPage(
176176
tabPanel(
177177
title = "Summary",
178178
fluidPage(
179-
h3("Station Summary"),
179+
h3("Location Summary"),
180180
mainPanel(
181181
textOutput('station_specifications'),
182182
hr(),
183183
radioButtons("disease",
184-
label = "Choose Disease",
185-
choices = c("Gray Leaf Spot", "Tar Spot", "Frog Eye Leaf Spot",
186-
"Whitemold Irr (30in)", "Whitemold Irr (15in)", "Whitemold No Irr"),
184+
label = "Choose Crop Disease",
185+
choices = c("Gray Leaf Spot", "Frog Eye Leaf Spot",
186+
"Tar Spot",
187+
"Whitemold Irr (30in)",
188+
"Whitemold Irr (15in)",
189+
"Whitemold No Irr"),
187190
selected = "Gray Leaf Spot",
188191
inline = TRUE),
189192
hr(),

0 commit comments

Comments
 (0)