Здравствуйте, у меня есть такой код:
<div style="display: inline;"><a id="select-sector" class="selectpicker" data-live-search="true" th:for="${sifr == sector}">
<option th:each="s : ${sectors}" th:text="${s.desc}" ></option>
</a></div>
<h5 class="modal-title" id="exampleModalLabel" ><big>Title <a th:if="${dateFro != null}" style="color: black;">for <a th:text="${dateBy}" style="color: black;"></a></a> to <a th:text="${dateBy}" style="color: black;"></a>
<a th:if="${sector != null}" style="color: black;">Sub text
<div style="display: inline;"><a id="select-sector" class="selectpicker" data-live-search="true" >
<option th:each="s : ${sectors}" th:for="${s.sifr== sector}" th:text="${s.desc}" ></option>
</a></div></a>
<a th:if="${lev != null}" style="color: black;">, Levels <a th:text="${lev}" style="color: black;"></a></a>
</big>.
</h5>
Я пытаюсь вернуть значение одного сектора, сейчас он возвращает мне все сектора, что я делаю неправильно?