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 bae7bdc commit 6173105Copy full SHA for 6173105
docs/index.html
@@ -82,6 +82,7 @@
82
const queryParams = new URLSearchParams(window.location.search);
83
const searchParam = queryParams.get('search');
84
const searchTerm = null !== searchParam ? searchParam : '';
85
+ const versionNumber = null !== queryParams.get('version') ? 'v' + queryParams.get('version') : 'master';
86
new Vue({
87
el: '#app',
88
data: {
@@ -90,7 +91,7 @@
90
91
configurationDescriptions: [],
92
searchCondition: searchTerm,
93
shouldStable: false,
- version: 'master',
94
+ version: versionNumber,
95
oldVersion: undefined,
96
versionOptions: ['master']
97
},
0 commit comments