This used to work up until a couple of weeks ago. @maksii1, any ETA on a solution?
It seems the problem is, the Font Awesome icon isn't being applied when an item row is selected.
For example, here is the HTML DOM with this not working (no checked icon showing):
<tr class="selected info">
<td ...>
<span class="fa fa-fw" ... />
</td>
...
</tr>
And here is the HTML DOM with the Font Awesome 'check' icon being added manually through my browser dev tools. Note the `fa-check` class added to the `span` element.
<tr class="selected info">
<td ...>
<span class="fa fa-fw fa-check" ... />
</td>
...
</tr>
The end result (using the above DOM):
