Skip to content

Commit 660c8ba

Browse files
committed
Align organisation lead description with Excel column L content.
This displays organisation_mission under the organisation name and avoids duplicate intro rendering in the accordion. Made-with: Cursor
1 parent 4ea602b commit 660c8ba

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

resources/js/components/matchmaking/ToolDetailCard.vue

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -326,12 +326,6 @@ export default {
326326
if (org.type !== 'organisation') return null;
327327
328328
const abouts = [];
329-
if (org.organisation_mission) {
330-
abouts.push({
331-
title: 'Introduction',
332-
list: [org.organisation_mission],
333-
});
334-
}
335329
if (org.support_activities?.length) {
336330
abouts.push({
337331
title:
@@ -367,7 +361,9 @@ export default {
367361
368362
return {
369363
name: org.organisation_name,
370-
description: org.description,
364+
// Column L in the organisation Excel maps to organisation_mission.
365+
// Show it in the lead section under the organisation name.
366+
description: org.organisation_mission || org.description,
371367
location:
372368
props.locations.find(({ iso }) => iso === org.country)?.name || '',
373369
email: org.email,

0 commit comments

Comments
 (0)