Fix #4760
This commit is contained in:
parent
af583d2ef6
commit
65bf863093
|
@ -446,7 +446,9 @@ export default abstract class Chart<T extends Record<string, any>> {
|
||||||
if (typeof v == 'object') {
|
if (typeof v == 'object') {
|
||||||
dive(v, p);
|
dive(v, p);
|
||||||
} else {
|
} else {
|
||||||
nestedProperty.set(res, p, chart.map(s => nestedProperty.get(s, p)));
|
const values = chart.map(s => nestedProperty.get(s, p))
|
||||||
|
.map(v => parseInt(v, 10)); // TypeORMのバグ(?)で何故か数値カラムの値が文字列型になっているので数値に戻す
|
||||||
|
nestedProperty.set(res, p, values);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue