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 33f306e commit d6db5feCopy full SHA for d6db5fe
docs/index.html
@@ -114,7 +114,8 @@
114
const searchTerm = null !== searchParam ? searchParam : '';
115
const versionParam = queryParams.get('version');
116
const parseVersionParam = (version) => {
117
- if (version === 'main') return 'main';
+ // master is kept for backwards compatibility with old branch name
118
+ if (version === 'master' || version === 'main') return 'main';
119
if (version.startsWith('v')) return version;
120
return `v${version}`;
121
};
0 commit comments