Skip to content

Commit 035facd

Browse files
committed
Remove brackets around (n active) filter count
1 parent 20a3f9a commit 035facd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/cinder/controls.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,14 +303,14 @@ defmodule Cinder.Controls do
303303
</span>
304304
{@filters_label}
305305
<span class={[@theme.filter_count_class, if(@active_filter_count == 0, do: "invisible", else: "")]} data-key="filter_count_class">
306-
({@active_filter_count} {dngettext("cinder", "active", "active", @active_filter_count)})
306+
{@active_filter_count} {dngettext("cinder", "active", "active", @active_filter_count)}
307307
</span>
308308
</span>
309309
<% else %>
310310
<span class={@theme.filter_title_class} data-key="filter_title_class">
311311
{@filters_label}
312312
<span class={[@theme.filter_count_class, if(@active_filter_count == 0, do: "invisible", else: "")]} data-key="filter_count_class">
313-
({@active_filter_count} {dngettext("cinder", "active", "active", @active_filter_count)})
313+
{@active_filter_count} {dngettext("cinder", "active", "active", @active_filter_count)}
314314
</span>
315315
</span>
316316
<% end %>

0 commit comments

Comments
 (0)