You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/html/issue-card.js
+5-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,11 @@ export default function (issue) {
6
6
</div>
7
7
<div class="card-content">
8
8
<span class="card-title"></span>
9
-
<h5>${(issue.approved==0) ? '<i class="material-icons" title="Ce signalement sera vérifié prochainement par un modérateur">new_releases</i>' : ''}${issue.categorie_str}</h5>
9
+
<h5>
10
+
${(issue.approved==0) ? '<i class="material-icons" title="Ce signalement sera vérifié prochainement par un modérateur">new_releases</i>' : ''}
11
+
${(issue.status==1) ? '<i class="material-icons" title="Ce signalement a été pris en compte et le problème corrigé !">check_circle</i>' : ''}
0 commit comments