DEV: remove fa- prefix from icon names and update deprecated names for times and undo (#680)
This commit is contained in:
parent
3007975b95
commit
4eaa701133
|
|
@ -14,11 +14,11 @@ export default class DiscoursePostEventInvitee extends Component {
|
|||
get statusIcon() {
|
||||
switch (this.args.invitee.status) {
|
||||
case "going":
|
||||
return "fa-check";
|
||||
return "check";
|
||||
case "interested":
|
||||
return "fa-star";
|
||||
return "star";
|
||||
case "not_going":
|
||||
return "fa-times";
|
||||
return "xmark";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ export default createWidget("discourse-group-timezones-reset", {
|
|||
attrs=(hash
|
||||
disabled=this.transformed.isDisabled
|
||||
action="onResetOffset"
|
||||
icon="undo"
|
||||
icon="arrow-rotate-left"
|
||||
)
|
||||
}}
|
||||
`,
|
||||
|
|
|
|||
Loading…
Reference in New Issue