From e67fbc7bc470a5eb960209501fedd5f128b05d1b Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 20 Apr 2026 12:35:22 -0700 Subject: [PATCH] Fix borders --- .../admin/tasks/tasks.component.html | 172 +++++++++--------- .../admin/tasks/tasks.component.scss | 4 + 2 files changed, 91 insertions(+), 85 deletions(-) diff --git a/src-ui/src/app/components/admin/tasks/tasks.component.html b/src-ui/src/app/components/admin/tasks/tasks.component.html index dc4e0baae..48abf243d 100644 --- a/src-ui/src/app/components/admin/tasks/tasks.component.html +++ b/src-ui/src/app/components/admin/tasks/tasks.component.html @@ -94,93 +94,95 @@ - - - - - - - @if (sectionShowsResults(section)) { - - } - - - - - - @for (task of tasks; track task.id) { - - - - - @if (sectionShowsResults(section)) { - - } - - - +
+
-
- - -
-
NameCreatedResultsInfoActions
-
- - -
-
-
{{ taskDisplayName(task) }}
-
- @if (taskShowsSeparateTypeLabel(task)) { - {{ task.task_type_display }} - - } - {{ task.trigger_source_display }} -
-
{{ task.date_created | customDate:'short' }} - @if (task.result_message?.length > 50) { -
- {{ task.result_message | slice:0:50 }}… -
- } - @if (task.result_message?.length <= 50) { - {{ task.result_message }} - } - -
{{ task.result_message | slice:0:300 }}@if (task.result_message.length > 300) {
-                  …
-                }
- @if (task.result_message?.length > 300) { -
(click for full output) - } -
-
- - -
- - - @if (task.related_document_ids?.[0]) { - - } - -
-
+ - + + + + @if (sectionShowsResults(section)) { + + } + + - } - -
-
{{ task.result_message }}
-
+
+ + +
+
NameCreatedResultsInfoActions
+ + + @for (task of tasks; track task.id) { + + +
+ + +
+ + +
{{ taskDisplayName(task) }}
+
+ @if (taskShowsSeparateTypeLabel(task)) { + {{ task.task_type_display }} + + } + {{ task.trigger_source_display }} +
+ + {{ task.date_created | customDate:'short' }} + @if (sectionShowsResults(section)) { + + @if (task.result_message?.length > 50) { +
+ {{ task.result_message | slice:0:50 }}… +
+ } + @if (task.result_message?.length <= 50) { + {{ task.result_message }} + } + +
{{ task.result_message | slice:0:300 }}@if (task.result_message.length > 300) {
+                    …
+                  }
+ @if (task.result_message?.length > 300) { +
(click for full output) + } +
+ + } + + + + +
+ + + @if (task.related_document_ids?.[0]) { + + } + +
+ + + + +
{{ task.result_message }}
+ + + } + + + @if (visibleSections.length > 0) { diff --git a/src-ui/src/app/components/admin/tasks/tasks.component.scss b/src-ui/src/app/components/admin/tasks/tasks.component.scss index 325fd2c02..d8ebc21f0 100644 --- a/src-ui/src/app/components/admin/tasks/tasks.component.scss +++ b/src-ui/src/app/components/admin/tasks/tasks.component.scss @@ -37,3 +37,7 @@ pre { .z-10 { z-index: 10; } + +tbody tr:nth-last-child(2) td { + border-bottom: none !important; +}