fix: made quotes same throughout file

This commit is contained in:
Jannat Patel
2021-10-18 13:13:19 +05:30
parent 7d80178b48
commit eaa8876f4e
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@
{% if avg_rating %} {% if avg_rating %}
<span class=""> <span class="">
<img class="icon-background" src="/assets/community/icons/rating.svg" /> <img class="icon-background" src="/assets/community/icons/rating.svg" />
{{ frappe.utils.flt(avg_rating, frappe.get_system_settings('float_precision') or 3) }} {{ frappe.utils.flt(avg_rating, frappe.get_system_settings("float_precision") or 3) }}
</span> </span>
{% endif %} {% endif %}
</span> </span>

View File

@@ -201,7 +201,7 @@
{% if avg_rating %} {% if avg_rating %}
<div class="overtime-item"> <div class="overtime-item">
<img class="icon-background mr-1" src="/assets/community/icons/rating.svg" /> <img class="icon-background mr-1" src="/assets/community/icons/rating.svg" />
{{ frappe.utils.flt(avg_rating, frappe.get_system_settings('float_precision') or 3) }} Rating {{ frappe.utils.flt(avg_rating, frappe.get_system_settings("float_precision") or 3) }} Rating
</div> </div>
{% endif %} {% endif %}
</div> </div>