From 8c3f7417c07e0aaceb4bcde3bb42cbdf2f499d90 Mon Sep 17 00:00:00 2001 From: devfake Date: Thu, 25 Jun 2015 21:20:36 +0200 Subject: [PATCH] remove count for single cards --- .../app/modules/deck-builder/views/deck-builder.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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' : '' }}