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 2820bf8 commit e20dee1Copy full SHA for e20dee1
scripts/generateSearch.js
@@ -137,7 +137,7 @@ async function generateSearch(config) {
137
let doneCount = 0;
138
console.log('Search Content to save:', contents.length);
139
for (const content of contents) {
140
- if (version === '8.x') {
+ if (version === '9.x') {
141
let url = content.url.startsWith('/') ? content.url : `/${content.url}`;
142
if (!url.startsWith('/docs')) {
143
url = '/docs' + url;
scripts/website.js
@@ -311,6 +311,7 @@ const versionObj = (() => {
311
currentVersion: getCurrentVersion(),
312
latestVersion: getLatestVersion(),
313
pastVersions: [
314
+ getLatestVersionOf(8),
315
getLatestVersionOf(7),
316
getLatestVersionOf(6)
317
]
0 commit comments