Skip to content

Commit

Permalink
Fix account name editing (#8801)
Browse files Browse the repository at this point in the history
Editing the name of an account was accidentally made impossible when
FontAwesome was updated in #8256, because the icon we used to use for
the edit button (`fa fa-pencil`) was no longer free. The icon has been
switched to `fas fa-pencil-alt`, which is free.
  • Loading branch information
Gudahtt authored Jun 13, 2020
1 parent f17aa87 commit 31bb86c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/app/components/ui/editable-label.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class EditableLabel extends Component {
<div key={1} className="editable-label__value">{this.state.value}</div>
), (
<div key={2} className="editable-label__icon-wrapper">
<i className="fa fa-pencil editable-label__icon" onClick={() => this.setState({ isEditing: true })} />
<i className="fas fa-pencil-alt editable-label__icon" onClick={() => this.setState({ isEditing: true })} />
</div>
)]
}
Expand Down

0 comments on commit 31bb86c

Please sign in to comment.