1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-07-02 16:38:37 +00:00

Use regular text version of ✔︎ instead of emoji version on iOS

See this workaround: 38362138 (38362138)
This commit is contained in:
Frédéric Guillot 2018-08-28 20:46:15 -07:00
parent 5341bbcbe2
commit 9ba9858bea
4 changed files with 10 additions and 10 deletions

View file

@ -40,10 +40,10 @@
<a href="#"
title="{{ t "Change entry status" }}"
data-toggle-status="true"
data-label-read="✔ {{ t "Read" }}"
data-label-read="✔&#xfe0e; {{ t "Read" }}"
data-label-unread="✘ {{ t "Unread" }}"
data-value="{{ if eq .entry.Status "read" }}read{{ else }}unread{{ end }}"
>{{ if eq .entry.Status "read" }}✘ {{ t "Unread" }}{{ else }}✔ {{ t "Read" }}{{ end }}</a>
>{{ if eq .entry.Status "read" }}✘ {{ t "Unread" }}{{ else }}✔&#xfe0e; {{ t "Read" }}{{ end }}</a>
</li>
</ul>
</div>