Good day.
I have the following component select multiple
<select multiple ng-model="templateSelect" id="sel_templates" material-select watch ng-change="loadWeeklyConfiguration(templateSelect)">
<option ng-repeat="x in templates" value="{{x.id}}" data-icon="delete_outline">
{{x.title}}
</option>
</select>
How could you achieve the following with this component?
The boats would execute the action of eliminating the corresponding item.
Thank you in advance