From a6a37f8f1ae14aaf1a845ec0483106284c1339f0 Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Sat, 10 Jan 2026 14:15:55 -0600 Subject: [PATCH] fix for price --- .../app/pages/subscription/my-listing/my-listing.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bizmatch/src/app/pages/subscription/my-listing/my-listing.component.html b/bizmatch/src/app/pages/subscription/my-listing/my-listing.component.html index 9f3e365..c87276f 100644 --- a/bizmatch/src/app/pages/subscription/my-listing/my-listing.component.html +++ b/bizmatch/src/app/pages/subscription/my-listing/my-listing.component.html @@ -73,7 +73,7 @@ {{ listing.title }} {{ listing.listingsCategory === 'commercialProperty' ? 'Commercial Property' : 'Business' }} {{ listing.location.name ? listing.location.name : listing.location.county ? listing.location.county : this.selectOptions.getState(listing.location.state) }} - ${{ listing.price.toLocaleString() }} + ${{ listing.price ? listing.price.toLocaleString() : '' }} {{ listing.internalListingNumber ?? '—' }}