diff --git a/templates/components/alert.html b/templates/components/alert.html index 1fd30167..46be1549 100644 --- a/templates/components/alert.html +++ b/templates/components/alert.html @@ -38,7 +38,14 @@ {% endif %} {% if actions %} -
{{ actions | safe }}
+
+ {% for action in actions %} + + {% if 'icon' in action %}{{ Icon(action["icon"]) }}{% endif %} + {{ action["label"] }} + + {% endfor %} +
{% endif %}