From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 7 May 2024 08:37:13 +0000 (-0700) Subject: Fix: document history text color illegible in light mode (#6601) X-Git-Tag: v2.8.2~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=190b648c72b9c78d51f6cfccf73362075cef2c37;p=thirdparty%2Fpaperless-ngx.git Fix: document history text color illegible in light mode (#6601) --- 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 65ecaff0ad..837ac0e69c 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] }}
  • }