diff --git a/templates/partials/topset.html b/templates/partials/topset.html
index 36155ec..9efc567 100644
--- a/templates/partials/topset.html
+++ b/templates/partials/topset.html
@@ -2,7 +2,7 @@
{% if is_edit|default(false, true) == false %}
- {{ exercise_name }}
diff --git a/templates/partials/workout_tags_list.html b/templates/partials/workout_tags_list.html
index 7e13df9..766c1ca 100644
--- a/templates/partials/workout_tags_list.html
+++ b/templates/partials/workout_tags_list.html
@@ -1,10 +1,11 @@
-{% if tags|length == 0 %}
+{% if tags|length > 0 %}
{% for tag in tags %}
{% if tag.is_selected %}
+ hx-get="{{ url_for('tags.goto_tag') }}"
+ hx-vals='{"filter": "{{ tag.tag_filter }}", "person_id": "{{ tag.person_id }}"}' hx-target="#container"
+ hx-push-url="true">
{{ tag.tag_name }}
{% endif %}
|