From 190b648c72b9c78d51f6cfccf73362075cef2c37 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 7 May 2024 01:37:13 -0700 Subject: [PATCH] Fix: document history text color illegible in light mode (#6601) --- .../document-history/document-history.component.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src-ui/src/app/components/document-history/document-history.component.html b/src-ui/src/app/components/document-history/document-history.component.html index 65ecaff0a..837ac0e69 100644 --- a/src-ui/src/app/components/document-history/document-history.component.html +++ b/src-ui/src/app/components/document-history/document-history.component.html @@ -15,7 +15,7 @@
  • -
    +
    {{ entry.timestamp | customDate:'longDate' }} {{ entry.timestamp | date:'shortTime' }}
    @@ -33,19 +33,19 @@ @if (change.value["type"] === 'm2m') {
  • {{ change.value["operation"] | titlecase }}  - {{ change.key | titlecase }}:  + {{ change.key | titlecase }}{{ change.value["objects"].join(', ') }}
  • } @else if (change.value["type"] === 'custom_field') {
  • - {{ change.value["field"] }}:  + {{ change.value["field"] }}{{ change.value["value"] }}
  • } @else {
  • - {{ change.key | titlecase }}:  + {{ change.key | titlecase }}{{ change.value[1] }}
  • }