Skip to content

Commit

Permalink
add spaces after "last updated" label
Browse files Browse the repository at this point in the history
  • Loading branch information
MoralCode committed Oct 11, 2024
1 parent 9d2d0b1 commit bf3b214
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 8Knot/pages/repo_overview/visualizations/ossf_scorecard.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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")]),
]
)
],
Expand Down

0 comments on commit bf3b214

Please sign in to comment.