Issue 3744 New bulk insert of US assigns a 0 value to Points, but default should be '?' (or whatever is predefined), not '0'

stable
Alejandro Alonso 2016-01-25 10:00:55 +01:00 committed by Juanfran
parent dcc60c73fd
commit f3d0b49d94
1 changed files with 1 additions and 1 deletions

View File

@ -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