Fix updateF7Text argument order to clear form after submission
Some checks failed
Deploy stAndrews / deploy (push) Failing after 4s
Some checks failed
Deploy stAndrews / deploy (push) Failing after 4s
This commit is contained in:
12
app.R
12
app.R
@@ -533,12 +533,12 @@ server <- function(input, output, session) {
|
||||
output$pl_message <- renderUI(
|
||||
tags$p(style = "color:#4cd964;", "Listing submitted successfully!")
|
||||
)
|
||||
updateF7Text(session, "pl_address", value = "")
|
||||
updateF7Text(session, "pl_price", value = "")
|
||||
updateF7Text(session, "pl_sqft", value = "")
|
||||
updateF7Text(session, "pl_name", value = "")
|
||||
updateF7Text(session, "pl_email", value = "")
|
||||
updateF7Text(session, "pl_cell", value = "")
|
||||
updateF7Text("pl_address", value = "")
|
||||
updateF7Text("pl_price", value = "")
|
||||
updateF7Text("pl_sqft", value = "")
|
||||
updateF7Text("pl_name", value = "")
|
||||
updateF7Text("pl_email", value = "")
|
||||
updateF7Text("pl_cell", value = "")
|
||||
})
|
||||
|
||||
output$pl_table <- renderDT({
|
||||
|
||||
Reference in New Issue
Block a user