Minor display change

This commit is contained in:
1F616EMO 2024-06-05 19:00:13 +08:00
parent 797558db00
commit 181d62639f
No known key found for this signature in database
GPG Key ID: EF52EFA8E05859B2

View File

@ -20,10 +20,10 @@ export default AbstractIconOverlay.extend({
},
createPopup: function (obj) {
return "<h4>Area for sale</h4>" +
return "<h4>Area For Sale</h4>" +
"<h5>" + HtmlSanitizer.SanitizeHtml(obj.attributes.description || "No Description") + "</h5><hr>" +
"<b>Owner:</b> " + HtmlSanitizer.SanitizeHtml(obj.attributes.owner) + "<br>" +
"<b>Area IDs:</b> " + HtmlSanitizer.SanitizeHtml(obj.attributes.id) + "<br>" +
"<b>Area ID(s):</b> " + HtmlSanitizer.SanitizeHtml(obj.attributes.id) + "<br>" +
"<b>Price:</b> $" + HtmlSanitizer.SanitizeHtml(obj.attributes.price) + "<br>";
}
});