DEV: replace "trash" icons with "trash-alt"
This commit is contained in:
parent
93a556d9a2
commit
f755810906
|
@ -64,7 +64,7 @@
|
|||
label="admin.api.undo_revoke"}}
|
||||
{{d-button
|
||||
action=(action "deleteKey")
|
||||
actionParam=model icon="trash"
|
||||
actionParam=model icon="trash-alt"
|
||||
label="admin.api.delete"
|
||||
class="btn-danger"}}
|
||||
{{else}}
|
||||
|
@ -77,4 +77,4 @@
|
|||
{{/if}}
|
||||
</div>
|
||||
{{/admin-form-row}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -35,7 +35,7 @@ export default DropdownSelectBoxComponent.extend({
|
|||
id: "deleteUnusedTags",
|
||||
name: I18n.t("tagging.delete_unused"),
|
||||
description: I18n.t("tagging.delete_unused_description"),
|
||||
icon: "trash",
|
||||
icon: "trash-alt",
|
||||
__sk_row_type: "noopRow"
|
||||
}
|
||||
];
|
||||
|
|
|
@ -19,7 +19,7 @@ function dataFor(status) {
|
|||
case IGNORED:
|
||||
return { icon: "external-link-alt", name: "ignored" };
|
||||
case DELETED:
|
||||
return { icon: "trash", name: "deleted" };
|
||||
return { icon: "trash-alt", name: "deleted" };
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue