From bf3b214372bc6701d3dcdcb956d43c44e00d2747 Mon Sep 17 00:00:00 2001 From: Adrian Edwards Date: Fri, 11 Oct 2024 12:53:45 -0400 Subject: [PATCH] add spaces after "last updated" label --- 8Knot/pages/repo_overview/visualizations/ossf_scorecard.py | 2 +- 8Knot/pages/repo_overview/visualizations/repo_general_info.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/8Knot/pages/repo_overview/visualizations/ossf_scorecard.py b/8Knot/pages/repo_overview/visualizations/ossf_scorecard.py index 29eb36a2..9a6ba46d 100644 --- a/8Knot/pages/repo_overview/visualizations/ossf_scorecard.py +++ b/8Knot/pages/repo_overview/visualizations/ossf_scorecard.py @@ -45,7 +45,7 @@ dbc.Row( [ dbc.Label( - ["Last Updated:", html.Span(id=f"{PAGE}-{VIZ_ID}-updated")], + ["Last Updated: ", html.Span(id=f"{PAGE}-{VIZ_ID}-updated")], className="mr-2", ) ] diff --git a/8Knot/pages/repo_overview/visualizations/repo_general_info.py b/8Knot/pages/repo_overview/visualizations/repo_general_info.py index e0db7cb5..d844f5b1 100644 --- a/8Knot/pages/repo_overview/visualizations/repo_general_info.py +++ b/8Knot/pages/repo_overview/visualizations/repo_general_info.py @@ -32,7 +32,7 @@ dcc.Loading( html.Div(id=f"{PAGE}-{VIZ_ID}"), ), - dbc.Row([dbc.Label(["Last Updated:", html.Span(id=f"{PAGE}-{VIZ_ID}-updated")], className="mr-2")]), + dbc.Row([dbc.Label(["Last Updated: ", html.Span(id=f"{PAGE}-{VIZ_ID}-updated")], className="mr-2")]), ] ) ],