Fix updateF7Text argument order to clear form after submission
Some checks failed
Deploy stAndrews / deploy (push) Failing after 4s

This commit is contained in:
2026-03-09 17:46:51 -04:00
parent e2f5f7a9d2
commit 50f0964de7

12
app.R
View File

@@ -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({