From 9c59e40de72ff8377dbf980344d67369934ea841 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 8 Oct 2024 11:32:55 -0700 Subject: [PATCH] fix moderate accessibility violation scope='row' --- app/templates/views/activity/all-activity.html | 2 +- app/templates/views/dashboard/dashboard.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/templates/views/activity/all-activity.html b/app/templates/views/activity/all-activity.html index 1067bc07b..e51680bcb 100644 --- a/app/templates/views/activity/all-activity.html +++ b/app/templates/views/activity/all-activity.html @@ -90,7 +90,7 @@ {% if all_jobs_dict %} {% for job in all_jobs_dict %} - + {{ job.job_id[:8] if job.job_id else 'Manually entered number' }} diff --git a/app/templates/views/dashboard/dashboard.html b/app/templates/views/dashboard/dashboard.html index 6c554d515..b3dc324c9 100644 --- a/app/templates/views/dashboard/dashboard.html +++ b/app/templates/views/dashboard/dashboard.html @@ -74,7 +74,7 @@ {% if job.created_by.name == current_user.name %} {% set notification = job.notifications[0] %} - + {{ job.job_id[:8] if job.job_id else 'Manually entered number' }} @@ -114,7 +114,7 @@ {% for job in jobs[:5] %} {% set notification = job.notifications[0] %} - + {{ job.job_id[:8] if job.job_id else 'Manually entered number' }}