diff options
Diffstat (limited to 'resources/tools/presentation/generator_tables.py')
-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 65bf6d562e..814fbe450c 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -595,7 +595,7 @@ def table_performance_trending_dashboard(table, input_data): else: anomaly = "normal" - if not isnan(last) and not isnan(trend): + if not isnan(last) and not isnan(trend) and trend != 0: # Change: change = round(float(last - trend) / 1000000, 2) # Relative change: |