wuyi 1 månad sedan
förälder
incheckning
87ef54db48
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      src/views/ScanView.vue

+ 2 - 2
src/views/ScanView.vue

@@ -91,7 +91,7 @@ const MAX_PHOTO_SIZE = 15 * 1024 * 1024
 const DEFAULT_NAME_BY_TYPE = Object.freeze({
   person: 'Person',
   pet: 'Pet',
-  goods: 'Goods'
+  goods: 'Item'
 })
 
 const qrType = computed(() => qrDetail.value?.qrType || 'person')
@@ -104,7 +104,7 @@ const heroTitle = computed(() => {
   if (!qrDetail.value) return 'Contact Card'
   if (isPerson.value) return 'Person Card'
   if (isPet.value) return 'Pet Card'
-  if (isGoods.value) return 'Goods Card'
+  if (isGoods.value) return 'Item Card'
   return 'Contact Card'
 })