GUI: Minor UI improvement for tags

This commit is contained in:
deajan 2024-05-07 19:50:52 +02:00
parent 1ef5987cc4
commit 09810af24e

View file

@ -532,7 +532,7 @@ def _main_gui(viewer_mode: bool):
try: try:
tags = snapshot["tags"] tags = snapshot["tags"]
if isinstance(tags, list): if isinstance(tags, list):
tags = ",".join(tags) tags = ", ".join(tags)
snapshot_tags = tags snapshot_tags = tags
except KeyError: except KeyError:
snapshot_tags = "" snapshot_tags = ""