File tree Expand file tree Collapse file tree
resources/js/components/matchmaking Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments