parent
0520b0bf7a
commit
153d668d16
|
@ -56,14 +56,17 @@ export const SimulatorHits = connectHits(({ hits }: SimulatorHitsProps) => {
|
|||
</H3>
|
||||
)}
|
||||
<Grid container spacing={2}>
|
||||
{hits.map((hit) => (
|
||||
<Grid item key={hit.objectID} xs={12} lg={6}>
|
||||
<SimulateurCardHit
|
||||
hit={hit}
|
||||
path={path(hit.pathId.split('.'), sitePaths)}
|
||||
/>
|
||||
</Grid>
|
||||
))}
|
||||
{hits.map(
|
||||
(hit) =>
|
||||
hit.pathId && (
|
||||
<Grid item key={hit.objectID} xs={12} lg={6}>
|
||||
<SimulateurCardHit
|
||||
hit={hit}
|
||||
path={path(hit.pathId.split('.'), sitePaths)}
|
||||
/>
|
||||
</Grid>
|
||||
)
|
||||
)}
|
||||
</Grid>
|
||||
</>
|
||||
)
|
||||
|
|
|
@ -608,6 +608,7 @@ module.exports = ({ t = (_, text) => text } = {}) => {
|
|||
icône: '🎩',
|
||||
tracking: 'dividendes',
|
||||
iframePath: 'dividendes',
|
||||
pathId: 'simulateurs.dividendes',
|
||||
meta: {
|
||||
title: t('pages.simulateurs.dividendes.meta.title', 'Dividendes'),
|
||||
description: t(
|
||||
|
|
Loading…
Reference in New Issue