We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2075b3b commit 3ab6698Copy full SHA for 3ab6698
assets/javascripts/discourse/components/modal/user-notes.hbs
@@ -27,7 +27,7 @@
27
<span class="controls">
28
<DButton
29
@action={{fn this.removeNote n}}
30
- @icon="far-trash-alt"
+ @icon="far-trash-can"
31
@title="user_notes.remove"
32
class="btn-small btn-danger"
33
/>
assets/javascripts/discourse/components/show-user-notes.hbs
@@ -1,6 +1,6 @@
1
2
class="btn-default show-user-notes-btn"
3
@action={{@show}}
4
- @icon="pencil-alt"
+ @icon="pencil"
5
@translatedLabel={{this.label}}
6
assets/javascripts/discourse/initializers/enable-user-notes.js
@@ -95,7 +95,7 @@ export default {
95
});
96
api.addPostAdminMenuButton((attrs) => {
97
return {
98
- icon: "pencil-alt",
+ icon: "pencil",
99
label: "user_notes.attach",
100
action: (post) => {
101
showUserNotes(
0 commit comments