UI: replace garbled emoji with plain counts/labels for badges (receipt count, notes)

This commit is contained in:
AJ
2025-10-19 00:54:11 -04:00
parent 134a1b8c9f
commit cf1266e86d
2 changed files with 5 additions and 5 deletions

View File

@@ -143,7 +143,7 @@
@if (t.ReceiptCount > 0)
{
<span class="badge bg-success" title="@t.ReceiptCount receipt(s) attached">
?? @t.ReceiptCount
@t.ReceiptCount
</span>
}
</div>
@@ -223,3 +223,4 @@
}
})();
</script>

View File

@@ -164,7 +164,7 @@
@if (t.ReceiptCount > 0)
{
<span class="badge bg-success" title="@t.ReceiptCount receipt(s) attached">
?? @t.ReceiptCount
@t.ReceiptCount
</span>
}
@if (!string.IsNullOrWhiteSpace(t.Notes))
@@ -172,9 +172,7 @@
<span class="badge bg-info"
title="@t.Notes"
data-bs-toggle="tooltip"
data-bs-placement="top">
??
</span>
data-bs-placement="top">Note</span>
}
</div>
</td>
@@ -349,3 +347,4 @@ else
}
</script>
}