fix: chrn.health link fixed

This commit is contained in:
Mowkax 2023-07-16 00:25:01 +03:00
parent dd2251f44a
commit fa57c33e7c

View File

@ -6,7 +6,7 @@ export let coops = [
market: "wellnessAndHealth", market: "wellnessAndHealth",
workers: 2, workers: 2,
status: "inDevelopment", status: "inDevelopment",
website: "chrn.health", website: [ "https://www.chrn.health/", "chrn.health"],
contact: ["https://discord.gg/Qk8KUk787z","DiscordInviteLink"], contact: ["https://discord.gg/Qk8KUk787z","DiscordInviteLink"],
description: "descriptionChironHealth" description: "descriptionChironHealth"
}, },
@ -52,7 +52,7 @@ export function addMarkersCoops(map,content) {
text += fieldText + "<a href='https://www." + g.contact[0] + "' target='_blank' rel=noreferrer>" + content[g.contact[1]] + "</a>" + "<br>" text += fieldText + "<a href='https://www." + g.contact[0] + "' target='_blank' rel=noreferrer>" + content[g.contact[1]] + "</a>" + "<br>"
} }
else if (field=="website") { else if (field=="website") {
text += fieldText + "<a href='" + g.website + "' target='_blank' rel=noreferrer>" + g.website + "</a>" + "<br>" text += fieldText + "<a href='" + g.website[0] + "' target='_blank' rel=noreferrer>" + g.website[1] + "</a>" + "<br>"
} }
else if (field=="location") { else if (field=="location") {
let location = g[field][0] let location = g[field][0]