diff --git a/site/client/app/modules/deck-builder/views/deck-builder.html b/site/client/app/modules/deck-builder/views/deck-builder.html index cbf2379..998ec55 100644 --- a/site/client/app/modules/deck-builder/views/deck-builder.html +++ b/site/client/app/modules/deck-builder/views/deck-builder.html @@ -38,7 +38,7 @@ LEADER
-
{{ item.count }}x
+
{{ item.count > 1 ? item.count + 'x' : '' }}
@@ -51,7 +51,7 @@ CLOSE COMBAT
-
{{ item.count }}x
+
{{ item.count > 1 ? item.count + 'x' : '' }}
@@ -63,7 +63,7 @@ RANGE
-
{{ item.count }}x
+
{{ item.count > 1 ? item.count + 'x' : '' }}
@@ -75,7 +75,7 @@ SPECIAL
-
{{ item.count }}x
+
{{ item.count > 1 ? item.count + 'x' : '' }}