Comment 3 for bug 581748

Revision history for this message
Curtis Hovey (sinzui) wrote : Re: Can't create 10.10 milestone for Launchpad sub

The problem is type conversion. Code names are strings, "10.10" is a string, but JS thinks it is a float, so it drops the 0.
maybe milestoneoverlay.js can do the string concatenation hack to ensure version is alwaysa string
    code_name: data['field.code_name'][0],
should be
    code_name: '' + data['field.code_name'][0],