diff options
Diffstat (limited to 'resources')
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 0f0ed6c7a5..406ec85b2d 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -856,7 +856,7 @@ def table_performance_trending_dashboard(table, input_data): # Sort the table according to the classification tbl_sorted = list() - for long_trend_class in ("failure", '-'): + for long_trend_class in ("failure", 'normal', '-'): tbl_long = [item for item in tbl_lst if item[2] == long_trend_class] for classification in \ ("failure", "regression", "progression", "normal"): |