From f12efa7755d111ff3af01b8347cc7ae9bbb1fce2 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Thu, 16 Jun 2022 16:47:40 -0400 Subject: [PATCH] Also watch textareas for changes on the dashboard edit item pages --- resources/js/dashboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/dashboard.js b/resources/js/dashboard.js index 92d9168..50ce1d7 100644 --- a/resources/js/dashboard.js +++ b/resources/js/dashboard.js @@ -739,7 +739,7 @@ function editItemInit() { }); // watch for changes to input and select element contents - $editItem.find("input, select").on("input change", contentChanged); + $editItem.find("input, textarea, select").on("input change", contentChanged); // initialize back button $backButton.on("click", function() {