My problem: when i click on the dropdown, i have an error message in my console:
An extract of my twig:
<select class="tabledit-input form-control dropdown-toggle" data-toggle="dropdown" name="color" >
{% for item in items %}
<option value="{{ item.id }}" selected="">{{ item.Label }}</option>
{% endfor %}
</select>
<button type="button" class="btn btn-success validbtn">Valid</button>
I check in my package.json and in the app.js and everything is ok. I have read that it could be link to the data-toggle="dropdown".But i don't know where is the error.
I don't know if it's important but this select is in a cell of a datatable.