diff --git a/src/atlasComponents/regionalFeatures/bsFeatures/ieeg/type.ts b/src/atlasComponents/regionalFeatures/bsFeatures/ieeg/type.ts index 1941f74681b40fd26ad60078603a9b1c1fd09ceb..9029bf61dce493a6bb5f6fd927bfca92c28f9266 100644 --- a/src/atlasComponents/regionalFeatures/bsFeatures/ieeg/type.ts +++ b/src/atlasComponents/regionalFeatures/bsFeatures/ieeg/type.ts @@ -1,6 +1,7 @@ export type TBSSummary = { '@id': string - 'name': string + name: string + description: string } export type TContactPoint = { diff --git a/src/atlasComponents/regionalFeatures/bsFeatures/regionalFeatureWrapper/regionalFeatureWrapper.component.ts b/src/atlasComponents/regionalFeatures/bsFeatures/regionalFeatureWrapper/regionalFeatureWrapper.component.ts index 1747606c95f19f5c078eec04f61e86ee8dde8c81..72d4595fade4fec861614188df507ba3d5a42b56 100644 --- a/src/atlasComponents/regionalFeatures/bsFeatures/regionalFeatureWrapper/regionalFeatureWrapper.component.ts +++ b/src/atlasComponents/regionalFeatures/bsFeatures/regionalFeatureWrapper/regionalFeatureWrapper.component.ts @@ -162,7 +162,7 @@ export class RegionalFeatureWrapperCmp implements OnChanges, OnDestroy{ if (contextedFeature.featureName === IEEG_FEATURE_NAME) { arg['name'] = contextedFeature.result['name'] - arg['description'] = ' ' + arg['description'] = contextedFeature.result['description'] || ' ' arg['isGdprProtected'] = true arg['urls'] = [] for (const info of contextedFeature.result['origin_datainfos']) {