From 745e0d046ebae1e72fb9bf73e32ae9ede11e3239 Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Tue, 4 Oct 2022 13:30:38 +0000 Subject: Revert "CSIT-Dash: Improvements in layout" This reverts commit 287fae853accd3782200c21a08345b7d88a936c8. Reason for revert: Change-Id: I51079c479b4d47343a2eff4366f0c2019ab4626d Signed-off-by: Peter Mikus --- csit.infra.dash/app/pal/trending/layout.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'csit.infra.dash/app/pal/trending/layout.py') diff --git a/csit.infra.dash/app/pal/trending/layout.py b/csit.infra.dash/app/pal/trending/layout.py index eea9042b3e..9b1965f937 100644 --- a/csit.infra.dash/app/pal/trending/layout.py +++ b/csit.infra.dash/app/pal/trending/layout.py @@ -165,8 +165,7 @@ class Layout: try: with open(self._html_layout_file, "r") as file_read: - self._html_layout = file_read.read().\ - replace("_title_", C.TREND_TITLE) + self._html_layout = file_read.read() except IOError as err: raise RuntimeError( f"Not possible to open the file {self._html_layout_file}\n{err}" @@ -299,7 +298,7 @@ class Layout: children=[ dbc.NavItem( dbc.NavLink( - C.TREND_TITLE, + "Continuous Performance Trending", disabled=True, external_link=True, href="#" -- cgit 1.2.3-korg