This repository was archived by the owner on Jul 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
assets/javascripts/discourse/components Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ export default class Assignment extends Component {
9898
9999 {{#if this . showAssigneeIeEmptyError }}
100100 <span class =" error-label" >
101- {{icon " exclamation- triangle" }}
101+ {{icon " triangle-exclamation " }}
102102 {{i18n " discourse_assign.assign_modal.choose_assignee" }}
103103 </span >
104104 {{/if }}
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ function extractPostId(buttonId) {
112112}
113113
114114function editAssignmentsButton ( ) {
115- const icon = iconHTML ( "pencil-alt " ) ;
115+ const icon = iconHTML ( "pencil" ) ;
116116 const label = I18n . t ( "discourse_assign.topic_level_menu.edit_assignments" ) ;
117117 return {
118118 id : "reassign" ,
@@ -138,7 +138,7 @@ function unassignFromTopicButton(topic) {
138138 topic . assigned_to_user ?. username || topic . assigned_to_group ?. name ;
139139 const icon = topic . assigned_to_user
140140 ? avatarHtml ( topic . assigned_to_user , "small" )
141- : iconHTML ( "user-times " ) ;
141+ : iconHTML ( "user-xmark " ) ;
142142 const label = I18n . t (
143143 "discourse_assign.topic_level_menu.unassign_from_topic" ,
144144 { username }
You can’t perform that action at this time.
0 commit comments