fix bugs in report editor, mainly re-render issues with same keys

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-04-27 21:14:46 +02:00
parent 64b2e84aeb
commit c3815bf6ab
9 changed files with 19 additions and 13 deletions

View File

@@ -631,5 +631,9 @@ export async function getSeriesFromEvents(input: IChartInput) {
)
).flat();
return withFormula(input, series);
try {
return withFormula(input, series);
} catch (e) {
return series;
}
}