File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -172,9 +172,9 @@ function showSwitcher(isOldVersion) {
172
172
const current_doc_version = window . location . pathname . split ( "/" ) [ 1 ] ;
173
173
const version_picker = document . createElement ( "select" ) ;
174
174
175
- version_picker . appendChild ( createOption ( "stable" , current_doc_version === "stable" ) ) ;
176
- version_picker . appendChild ( createOption ( "beta" , current_doc_version === "beta" ) ) ;
177
175
version_picker . appendChild ( createOption ( "nightly" , current_doc_version === "nightly" ) ) ;
176
+ version_picker . appendChild ( createOption ( "beta" , current_doc_version === "beta" ) ) ;
177
+ version_picker . appendChild ( createOption ( "stable" , current_doc_version === "stable" ) ) ;
178
178
179
179
for ( let medium = get_current_version ( ) ; medium >= 0 ; -- medium ) {
180
180
const version = `1.${ medium } .0` ;
You can’t perform that action at this time.
0 commit comments