linkifier settings: Fix empty list message not shown.

Previously, if there weren't any linkifiers set, only
non-admins could see the "No linkifiers set." message
below the list header. We do not hide the linkifiers
(when there are some of them) from non-admins, so there
seems to be no reason hide the above message when there
aren't any linkifiers.
This commit is contained in:
Abhijeet Prasad Bodas
2021-03-14 16:46:39 +05:30
committed by Tim Abbott
parent 9223dced3b
commit 0acfbc385b

View File

@@ -74,7 +74,7 @@
<th class="actions">{{t "Actions" }}</th>
{{/if}}
</thead>
<tbody id="admin_linkifiers_table" {{#unless is_admin}}class="required-text" data-empty="{{t 'No linkifiers set.' }}"{{/unless}}></tbody>
<tbody id="admin_linkifiers_table" class="required-text" data-empty="{{t 'No linkifiers set.' }}"></tbody>
</table>
</div>
</div>