From this other post: Any Custom App/Report on Split User Stories
The issue there was due to the app not handling multiple decimals/periods in Iteration/Release names. The solution on that post was:
OK! I think I got it. It seems to be an issue with the multiple decimals in the Iteration Name. If you would, find these lines in the code (in my text editor these are lines 2820-2829):
/*
* having a dot in the name for the key of a hash causes problems
*/
_getSafeTimeboxName: function(name) {
return name.replace(/\./,'.');
},
_getUnsafeTimeboxName: function(name) {
return name.replace(/./,'.');
},
Update them to make this replacement global by adding 'g' after the the substring to be replaced (lines 2824 & 2828). So it should look like this:
/*
* having a dot in the name for the key of a hash causes problems
*/
_getSafeTimeboxName: function(name) {
return name.replace(/\./g,'.');
},
_getUnsafeTimeboxName: function(name) {
return name.replace(/./g,'.');
},
Hope that was it. If so, it will be easy to post an issue and resolution on the GitHub site.
Michael