Maximiliano Gonzalez

Results 2 comments of Maximiliano Gonzalez

I have the same problem with v8, did you solve it?

@nurbek-mirai I think I found something. Instead of mapping the column IDs, try this. ```ts function getColumns(column: any) { if (column.columns) { return column.columns.map(getColumns) as string[]; } return (column.id as...