diff options
author | Tibor Frank <tifrank@cisco.com> | 2022-10-04 13:43:10 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2022-10-04 14:19:50 +0200 |
commit | 287fae853accd3782200c21a08345b7d88a936c8 (patch) | |
tree | 80be091068c2fb17d38071124c5542fcab114ab5 /csit.infra.dash/app/pal/stats | |
parent | 59734b2f72358f6315cbfadc1b1a0ef56b7e23ec (diff) |
CSIT-Dash: Improvements in layout
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: Idf043551122ceb54af08f161d0c4f3ab736156dd
Diffstat (limited to 'csit.infra.dash/app/pal/stats')
-rw-r--r-- | csit.infra.dash/app/pal/stats/layout.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/csit.infra.dash/app/pal/stats/layout.py b/csit.infra.dash/app/pal/stats/layout.py index 2f1b344613..c0e1d52bd0 100644 --- a/csit.infra.dash/app/pal/stats/layout.py +++ b/csit.infra.dash/app/pal/stats/layout.py @@ -165,7 +165,8 @@ class Layout: try: with open(self._html_layout_file, "r") as file_read: - self._html_layout = file_read.read() + self._html_layout = file_read.read().\ + replace("_title_", C.STATS_TITLE) except IOError as err: raise RuntimeError( f"Not possible to open the file {self._html_layout_file}\n{err}" @@ -301,7 +302,7 @@ class Layout: children=[ dbc.NavItem( dbc.NavLink( - "Continuous Performance Statistics", + C.STATS_TITLE, disabled=True, external_link=True, href="#" |