From 25c3aa43a0022d180fc9b31d68071790721c008b Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Thu, 21 Apr 2022 07:38:49 +0200 Subject: feat(uti): Remove button "Display" - not needed Change-Id: Ic2bc74af1574e766c007f310f626c2e9ba61bbc1 Signed-off-by: Tibor Frank --- resources/tools/dash/app/pal/trending/graphs.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'resources/tools/dash/app/pal/trending/graphs.py') diff --git a/resources/tools/dash/app/pal/trending/graphs.py b/resources/tools/dash/app/pal/trending/graphs.py index 6e0bcb55eb..7089e2c080 100644 --- a/resources/tools/dash/app/pal/trending/graphs.py +++ b/resources/tools/dash/app/pal/trending/graphs.py @@ -203,6 +203,8 @@ def _generate_trending_traces(ttype: str, name: str, df: pd.DataFrame, return list() x_axis = [d for d in df["start_time"] if d >= start and d <= end] + if not x_axis: + return list() anomalies, trend_avg, trend_stdev = _classify_anomalies( {k: v for k, v in zip(x_axis, df[_VALUE[ttype]])} -- cgit 1.2.3-korg