From 6669dc9d8638550476c810ed4783995d5da8480a Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Wed, 19 Jul 2023 21:54:10 -0400 Subject: [PATCH] Fix the link on the place name to use the right hifiurl On the place list, the link to a place uses the placename for a local place or the address for a federated or external place the link on the name was still using directly the address while the other parts (cell background and description) were using the variable. --- scripts/system/places/places.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/system/places/places.html b/scripts/system/places/places.html index e9a131ccd5..243e326996 100644 --- a/scripts/system/places/places.html +++ b/scripts/system/places/places.html @@ -432,7 +432,7 @@ formatedList = formatedList + "
"; - formatedList = formatedList + " | " + placeRecords[i].name + " | "; + formatedList = formatedList + "" + placeRecords[i].name + " | "; if (placeRecords[i].category !== "Z") { formatedList = formatedList + "![]() | ";
}