Merge pull request #837 from taigaio/Issue-3744-bulk-inserts-in-backlog-showing-0-points-for-new-us

Issue 3744 New bulk insert of US assigns a 0 value to Points, but default should be '?' (or whatever is predefined), not '0'
stable
Juanfran 2016-02-03 07:52:15 +01:00
commit f95272823b
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