Issue 3744 New bulk insert of US assigns a 0 value to Points, but default should be '?' (or whatever is predefined), not '0'
parent
dcc60c73fd
commit
f3d0b49d94
|
@ -161,7 +161,7 @@ EstimationsService = ($template, $qqueue, $repo, $confirm, $q) ->
|
|||
values = _.map(@us.points, (v, k) => @pointsById[v]?.value)
|
||||
|
||||
if values.length == 0
|
||||
return "0"
|
||||
return "?"
|
||||
|
||||
notNullValues = _.filter(values, (v) -> v?)
|
||||
if notNullValues.length == 0
|
||||
|
|
Loading…
Reference in New Issue