DEV: replace "eye-slash" icons with "far-eye-slash"

This commit is contained in:
Penar Musaraj 2020-01-06 12:27:20 -05:00
parent e2e9420204
commit 93a556d9a2
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{{#d-modal-body title="user.user_notifications.ignore_duration_title" autoFocus="false"}}
<div class="controls tracking-controls">
<label>{{d-icon "eye-slash" class="icon"}} {{i18n "user.user_notifications.ignore_duration_username"}}</label>
<label>{{d-icon "far-eye-slash" class="icon"}} {{i18n "user.user_notifications.ignore_duration_username"}}</label>
{{user-selector excludeCurrentUser=true
single="true"
usernames=ignoredUsername

View File

@ -2,7 +2,7 @@
{{#if ignoredEnabled}}
<div class="control-group user-ignore">
<div class="controls tracking-controls user-notifications">
<label>{{d-icon "eye-slash" class="icon"}} {{i18n 'user.ignored_users'}}</label>
<label>{{d-icon "far-eye-slash" class="icon"}} {{i18n 'user.ignored_users'}}</label>
{{ignored-user-list model=model items=model.ignored_usernames saving=saved}}
</div>
</div>

View File

@ -26,7 +26,7 @@ export default DropdownSelectBox.extend({
if (this.get("user.can_ignore_user")) {
content.push({
icon: "eye-slash",
icon: "far-eye-slash",
id: "changeToIgnored",
description: I18n.t("user.user_notifications.ignore_option_title"),
label: I18n.t("user.user_notifications.ignore_option")