Skip to content

Commit

Permalink
Fix order of property manager metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
indigane committed Aug 28, 2024
1 parent 9adc7ea commit caff239
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@ const LoadedHousingCompanyDetails = (): React.JSX.Element => {
{housingCompany.property_manager ? (
<div className="detail-field-metadata">
Vaihdettu:{" "}
{housingCompany.property_manager.modified_at
? formatDate(housingCompany.property_manager.modified_at)
: "tieto puuttuu"}
, muokattu:{" "}
{housingCompany.property_manager_changed_at
? formatDate(housingCompany.property_manager_changed_at)
: "tieto puuttuu"}
, muokattu:{" "}
{housingCompany.property_manager.modified_at
? formatDate(housingCompany.property_manager.modified_at)
: "tieto puuttuu"}
</div>
) : null}
</div>
Expand Down

0 comments on commit caff239

Please sign in to comment.