File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ const _create_placeholders_if_missing = () => {
6363const _create_version_select = ( versions ) => {
6464 const select = document . createElement ( "select" ) ;
6565 select . className = "version-select" ;
66+ select . setAttribute ( "aria-label" , "Python version" ) ;
6667 if ( _IS_LOCAL ) {
6768 select . disabled = true ;
6869 select . title = "Version switching is disabled in local builds" ;
@@ -96,6 +97,7 @@ const _create_language_select = (languages) => {
9697
9798 const select = document . createElement ( "select" ) ;
9899 select . className = "language-select" ;
100+ select . setAttribute ( "aria-label" , "Language" ) ;
99101 if ( _IS_LOCAL ) {
100102 select . disabled = true ;
101103 select . title = "Language switching is disabled in local builds" ;
You can’t perform that action at this time.
0 commit comments