Skip to content
Snippets Groups Projects
Commit 52676dcc authored by Moritz Stückler's avatar Moritz Stückler :cowboy:
Browse files

chore: debug lab card

parent bb382e85
No related branches found
No related tags found
No related merge requests found
Pipeline #9896 passed
......@@ -21,6 +21,15 @@ const labs = await getCollection("labs", (lab) =>
combinedNames.map((name) => localeFromUrl + "/" + name).includes(lab.id)
);
const debug = {
labs,
localeFromUrl,
combinedNames,
compareValue: localeFromUrl + "/" + name,
};
console.log("Debug Lab Card", debug);
const accordionClasses = "fc-bg-grey-100 !fc-border-b-0";
const captions = {
......@@ -63,7 +72,10 @@ const translatedCaptions = captions[localeFromUrl];
alt: translatedCaptions.mapImageAlt + lab.name,
src: `https://api.mapbox.com/styles/v1/mapbox/light-v11/static/pin-s+ee2f45(${lab.lng},${lab.lat})/${lab.lng},${lab.lat},13,0/180x180@2x?access_token=${import.meta.env.PUBLIC_MAPBOX_TOKEN}&logo=false`,
}}
rightImage={{ src: lab.logo, alt: translatedCaptions.logoAlt + lab.name }}
rightImage={{
src: lab.logo,
alt: translatedCaptions.logoAlt + lab.name,
}}
className={"md:fc-max-w-none not-prose"}
/>
{lab.description && !hide.includes("description") && (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment