diff --git a/src/decoders/tab.ts b/src/decoders/tab.ts index 0c7b445..5e32e35 100644 --- a/src/decoders/tab.ts +++ b/src/decoders/tab.ts @@ -4,7 +4,7 @@ export const decodeTab = (tab: any, instancePeriods: Period[]): Tab => { const find = (id: string) => instancePeriods.find((p2) => p2.id === id); const defaultPeriod = tab.periodeParDefaut && find(tab.periodeParDefaut.V.N); - const periods = tab.listePeriodes.V.map((p1: any) => find(p1)).filter(Boolean); + const periods = tab.listePeriodes.V.map((p1: any) => find(p1.N)).filter(Boolean); return { defaultPeriod,