diff --git a/resources/js/views/Event.vue b/resources/js/views/Event.vue index d2d0053..fc4d5aa 100644 --- a/resources/js/views/Event.vue +++ b/resources/js/views/Event.vue @@ -211,6 +211,13 @@ const workshopDate = computed(() => { * Return a computed price amount, if a form of 0, return "Free" */ const computedPrice = computed(() => { + if ( + event.value.price.toLowerCase() == "tbc" || + event.value.price.toLowerCase() == "tbd" + ) { + return event.value.price.toUpperCase(); + } + const parsedPrice = stringToNumber(event.value.price || "0"); if (parsedPrice == 0) { return "Free";