diff --git a/core/views/ui/drilldown.py b/core/views/ui/drilldown.py index fb7dcaa..1788416 100644 --- a/core/views/ui/drilldown.py +++ b/core/views/ui/drilldown.py @@ -48,7 +48,7 @@ def create_tags(query): spl = query.split("AND") spl = [x.strip() for x in spl if ":" in x] spl = [x.replace('"', "") for x in spl] - tags = [f"{tag}: {elem}" for tag, elem in [x.split(":") for x in spl]] + tags = [f"{tag}: {elem}" for tag, elem in [x.split(":")[:2] for x in spl]] return tags