Skip to content
Snippets Groups Projects
Unverified Commit 9b3e22c4 authored by Claire's avatar Claire Committed by GitHub
Browse files

Change account moderation notes to make links clickable (#22553)

* Change account moderation notes to make links clickable

Fixes #22539

* Fix styling of account moderation note links
parent 7e6ffa08
No related branches found
No related tags found
No related merge requests found
...@@ -1572,6 +1572,15 @@ a.sparkline { ...@@ -1572,6 +1572,15 @@ a.sparkline {
margin-bottom: 0; margin-bottom: 0;
} }
} }
a {
color: $highlight-text-color;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
} }
&__actions { &__actions {
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
= l report_note.created_at.to_date = l report_note.created_at.to_date
.report-notes__item__content .report-notes__item__content
= simple_format(h(report_note.content)) = linkify(report_note.content)
- if can?(:destroy, report_note) - if can?(:destroy, report_note)
.report-notes__item__actions .report-notes__item__actions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment