@@ -66,6 +66,7 @@ import HighlightedOperations from '#components/domain/HighlightedOperations';
6666import Link from '#components/Link' ;
6767import MapContainerWithDisclaimer from '#components/MapContainerWithDisclaimer' ;
6868import MapPopup from '#components/MapPopup' ;
69+ import WikiLink from '#components/WikiLink' ;
6970import { adminUrl } from '#config' ;
7071import useAuth from '#hooks/domain/useAuth' ;
7172import useCountryRaw from '#hooks/domain/useCountryRaw' ;
@@ -459,14 +460,19 @@ export function Component(props: BaseProps) {
459460 < Container
460461 className = { styles . countryOngoingActivities }
461462 actions = { isAuthenticated && (
462- < Link
463- external
464- href = { resolveUrl ( adminUrl , `api/country/${ countryId } /change/` ) }
465- variant = "secondary"
466- icons = { < PencilFillIcon /> }
467- >
468- { strings . editCountryLink }
469- </ Link >
463+ < >
464+ < Link
465+ external
466+ href = { resolveUrl ( adminUrl , `api/country/${ countryId } /change/` ) }
467+ variant = "secondary"
468+ icons = { < PencilFillIcon /> }
469+ >
470+ { strings . editCountryLink }
471+ </ Link >
472+ < WikiLink
473+ href = "user_guide/Country_Pages#on-going-activities"
474+ />
475+ </ >
470476 ) }
471477 headerDescription = { strings . countryOngoingActivitiesEmergenciesDescription }
472478 withCenteredHeaderDescription
@@ -591,8 +597,8 @@ export function Component(props: BaseProps) {
591597 < Link
592598 to = "countriesLayout"
593599 urlParams = { {
594- countryId :
595- clickedPointProperties . feature . properties . country_id ,
600+ // eslint-disable-next-line max-len
601+ countryId : clickedPointProperties . feature . properties . country_id ,
596602 } }
597603 >
598604 { clickedPointProperties . feature . properties . name }
0 commit comments