<.header> <.icon name="hero-document-text" /> Tags <:subtitle>Tags are tags.

With Regex

<%= for tag <- Enum.filter(@tags, fn t -> !!t.regex end) do %>

<%= tag.name %>

<% end %>

Without Regex

<%= for tag <- Enum.filter(@tags, fn t -> !t.regex end) do %>

<%= tag.name %>

<% end %>