i installed Prestashop 1.7.6.7, in the back office drop-down are not displayed properly. when i inspected the code found that generated html tag related to form select object has bug.
instead of <select id="....>, it is rendered without space ie.. <selectid="...> this is causing the issue.
if any one can support on how to fix the code so that generated html will have valid html tag.
<selectid="currency_active" name="currency[active]" class="custom-select"><option value=""></option><option value="1">Yes</option><option value="0">No</option> </selectid="currency_active">
instead it should be (space between select and id):
<select id="currency_active" name="currency[active]" class="custom-select"><option value=""></option><option value="1">Yes</option><option value="0">No</option>
</select id="currency_active">
this is the case in most of the drop down generated in back office.
Appreciate you support in resolving this issue.
.png.022b5452a8f28f552bc9430097a16da2.png)

