fix: add colon between key and value

This commit is contained in:
Abhishek Balam 2020-10-29 15:03:14 +05:30
parent 6e04e0d6cb
commit 218431372a

View file

@ -9,12 +9,12 @@ frappe.ui.form.on('Help Article', {
<div class="row">
<div class="col-md-6 col-xs-12">
<span class="indicator whitespace-nowrap green">
<span>Helpful ${frm.doc.helpful || 0}</span>
<span>Helpful: ${frm.doc.helpful || 0}</span>
</span>
</div>
<div class="col-md-6 col-xs-12">
<span class="indicator whitespace-nowrap red">
<span>Not Helpful ${frm.doc.not_helpful || 0}</span>
<span>Not Helpful: ${frm.doc.not_helpful || 0}</span>
</span>
</div>
</div>