We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0ad2ef commit 80ea362Copy full SHA for 80ea362
docs/src/ngdoc.js
@@ -109,7 +109,7 @@ exports.ngVersions = function() {
109
//NON_RC_RELEASE_NUMBER is used to signal the non-RC version for the release and
110
//it will always appear at the top of the list since the number is so high!
111
versionMap[baseVersion].push(
112
- version == baseVersion ? NON_RC_RELEASE_NUMBER : parseInt(version.match(/rc(\d+)/)[1]));
+ version == baseVersion ? NON_RC_RELEASE_NUMBER : parseInt(version.match(/rc\.?(\d+)/)[1]));
113
};
114
115
//flatten the map so that the RC versions occur in a natural sorted order
0 commit comments