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 83f43d3 commit 4becd18Copy full SHA for 4becd18
1 file changed
templates/switchers.js
@@ -63,6 +63,7 @@ const _create_placeholders_if_missing = () => {
63
const _create_version_select = (versions) => {
64
const select = document.createElement("select");
65
select.className = "version-select";
66
+ select.setAttribute("aria-label", "Python version");
67
if (_IS_LOCAL) {
68
select.disabled = true;
69
select.title = "Version switching is disabled in local builds";
@@ -96,6 +97,7 @@ const _create_language_select = (languages) => {
96
97
98
99
select.className = "language-select";
100
+ select.setAttribute("aria-label", "Language");
101
102
103
select.title = "Language switching is disabled in local builds";
0 commit comments