I have removed the bullet points from an unordered list, but I am having trouble displaying Log
with every message. The code I have doesn't seem to be working as expected. I want users to be able to differentiate between messages easily, without seeing the start and end points of each message together. Are there any other solutions to improve this?
main.html
<div class="row">
<ul style="list-style: none">
<li ng-repeat="item in data | filter:vm.searchLog track by $index" ng-bind-html="item | highlight:vm.searchLog">Log:</li>
</ul>
</div>