исправлена орфографическая ошибка

This commit is contained in:
Alexey 2021-07-29 15:17:54 +05:00
parent a07e46ce6c
commit 0ddbc659af

View File

@ -5,7 +5,7 @@ export const makeColumn = (title:string, key:string, other?:any) => ({
...other,
})
export const makeColumnsPlanFact = (title:string, keyPlan:string, keyFact?:string, gruopOther?:any) =>
export const makeColumnsPlanFact = (title:string, keyPlan:string, keyFact?:string, groupOther?:any) =>
{
let keyPlanLocal = keyPlan
let keyFactLocal = keyFact ?? ''
@ -17,7 +17,7 @@ export const makeColumnsPlanFact = (title:string, keyPlan:string, keyFact?:strin
return {
title: title,
...gruopOther,
...groupOther,
children: [
makeColumn('план', keyPlanLocal),
makeColumn('факт', keyFactLocal),