diff --git a/src/components/item_card/BundleButton.vue b/src/components/item_card/BundleButton.vue index fc4570d..c4e26c9 100644 --- a/src/components/item_card/BundleButton.vue +++ b/src/components/item_card/BundleButton.vue @@ -4,7 +4,7 @@ - {{bundleItem.bundle.name}} + {{bundleItem.bundle.name}}{{numberInBundle}} @@ -32,6 +32,9 @@ export default { }, NotInBundleIcon () { return faSquare + }, + numberInBundle () { + return this.bundleItem.count > 1 ? ` (${this.bundleItem.count})` : '' } }, methods: {