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) {
172172 const current_doc_version = window . location . pathname . split ( "/" ) [ 1 ] ;
173173 const version_picker = document . createElement ( "select" ) ;
174174
175- version_picker . appendChild ( createOption ( "stable" , current_doc_version === "stable" ) ) ;
176- version_picker . appendChild ( createOption ( "beta" , current_doc_version === "beta" ) ) ;
177175 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" ) ) ;
178178
179179 for ( let medium = get_current_version ( ) ; medium >= 0 ; -- medium ) {
180180 const version = `1.${ medium } .0` ;
You can’t perform that action at this time.
0 commit comments