favicon & json data

This commit is contained in:
2024-04-07 19:46:58 +02:00
parent e5b7779492
commit fb69d2e4b3
13 changed files with 7766 additions and 23 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -68,7 +68,6 @@ export class ListingsService {
async saveListing(listing: BusinessListing | CommercialPropertyListing) {
const repo=listing.listingsCategory==='business'?this.businessListingRepository:this.commercialPropertyListingRepository;
let result
listing.temporary=false;
if (listing.id){
result = await repo.save(listing.id,listing as any)
} else {