Some time the select dropdown field will always active, thus we need a mouse click for updates based on the select box. To remove this always active/focused state add the below code in the corresponding template file
<script> $(‘select’).on (‘change’, function () { $(this).trigger(‘blur’); }); </script>