We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8e7154 commit e2be536Copy full SHA for e2be536
docs/index.html
@@ -148,8 +148,8 @@
148
.map(tag => tag.name)
149
.filter(tag => tag.startsWith('v') && !excludedTagVersions.has(tag));
150
151
- const latestRelease = tags.find(tag => !tag.name.includes('rc'));
152
- this.viewVersion = latestRelease.name;
+ const latestRelease = tagOptions.find(tag => !tag.includes('rc'));
+ this.viewVersion = latestRelease;
153
this.versionOptions = this.versionOptions.concat(tagOptions);
154
},
155
async outputHtml() {
0 commit comments