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

View File

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