forked from FoundKeyGang/FoundKey
Fix #4760
This commit is contained in:
parent
af583d2ef6
commit
65bf863093
1 changed files with 3 additions and 1 deletions
|
@ -446,7 +446,9 @@ export default abstract class Chart<T extends Record<string, any>> {
|
|||
if (typeof v == 'object') {
|
||||
dive(v, p);
|
||||
} 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 a new issue