用橡皮擦除分割标记后,绑定的分割问题显示为-Infinity
continuous-integration/drone/push Build is passing Details

uat_us
wangxiaoshuang 2026-04-15 14:24:49 +08:00
parent 1a42cfd47c
commit 94f43f4b11
1 changed files with 3 additions and 3 deletions

View File

@ -1559,7 +1559,7 @@ export default {
answer = segment.stats && segment.stats[imageToolAttribute] ? Number((segment.stats[imageToolAttribute]).value).toFixed(this.digitPlaces) : ''
}
let o = {
Answer: answer === '-Infinity' ? null : answer,
Answer: answer === '-Infinity' || answer === 'NaN' ? null : answer,
QuestionId: item.QuestionId,
RowId: item.RowId,
SegmentId: item.SegmentId,