Update no connections found message on company page (#438)

This commit is contained in:
KM-R 2023-12-01 15:46:20 +00:00 committed by GitHub
parent 944374f145
commit 011e169383
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -439,9 +439,13 @@ def network_layout(selected_company_id: int) -> html.Div:
) )
return html.Div( return html.Div(
[ className="choose-metric",
children=[
html.H3( html.H3(
f"Leider gibt es keine Verbindungen vom Unternehmen mit ID: {selected_company_id}" className="metrics-title",
children=[
"Für dieses Unternehmen wurden leider keine Verflechtungen gefunden."
],
) )
] ],
) )