add change trigger when custom select option is chosen
Some checks failed
Build and Push Docker Image / build (push) Failing after 7m7s

This commit is contained in:
Corban-Lee Jones 2024-11-13 00:22:58 +00:00
parent 7ad0803b3c
commit 4252a2c79e

View File

@ -223,7 +223,7 @@ $(document).ready(function() {
const onOptionSelect = $option => {
$dropdown.hide();
$container.removeClass("active");
$select.val($option.data("value"));
$select.val($option.data("value")).trigger("change");
updateSelectedDisplayWrapper();
}