BugFixes:141,140,139,138,137,129

This commit is contained in:
2025-03-19 17:37:33 +01:00
parent cfddabbfe0
commit 923040f487
11 changed files with 83 additions and 41 deletions

View File

@@ -159,6 +159,16 @@ export class DetailsBusinessListingComponent extends BaseDetailsComponent {
{ label: 'Reason for Sale', value: this.listing.reasonForSale },
{ label: 'Broker licensing', value: this.listing.brokerLicencing },
{ label: 'Listed since', value: `${this.dateInserted()} - ${this.getDaysListed()} days` },
{
label: 'Listing by',
value: null, // Wird nicht verwendet
isHtml: true,
isListingBy: true, // Flag für den speziellen Fall
user: this.listingUser, // Übergebe das User-Objekt
imagePath: this.listing.imageName,
imageBaseUrl: this.env.imageBaseUrl,
ts: this.ts,
},
];
if (this.listing.draft) {
result.push({ label: 'Draft', value: this.listing.draft ? 'Yes' : 'No' });