@@ -191,6 +191,7 @@ class IDEView extends React.Component {
191191 < Toolbar />
192192 { this . props . ide . preferencesIsVisible &&
193193 < Overlay
194+ title = "Settings"
194195 ariaLabel = "settings"
195196 closeOverlay = { this . props . closePreferences }
196197 >
@@ -389,6 +390,7 @@ class IDEView extends React.Component {
389390 }
390391 { this . props . location . pathname === '/about' &&
391392 < Overlay
393+ title = "About"
392394 previousPath = { this . props . ide . previousPath }
393395 ariaLabel = "about"
394396 >
@@ -397,6 +399,7 @@ class IDEView extends React.Component {
397399 }
398400 { this . props . location . pathname === '/feedback' &&
399401 < Overlay
402+ title = "Submit Feedback"
400403 previousPath = { this . props . ide . previousPath }
401404 ariaLabel = "submit-feedback"
402405 >
@@ -405,6 +408,7 @@ class IDEView extends React.Component {
405408 }
406409 { this . props . ide . shareModalVisible &&
407410 < Overlay
411+ title = "Share"
408412 ariaLabel = "share"
409413 closeOverlay = { this . props . closeShareModal }
410414 >
@@ -417,6 +421,7 @@ class IDEView extends React.Component {
417421 }
418422 { this . props . ide . keyboardShortcutVisible &&
419423 < Overlay
424+ title = "Keyboard Shortcuts"
420425 ariaLabel = "keyboard shortcuts"
421426 closeOverlay = { this . props . closeKeyboardShortcutModal }
422427 >
@@ -425,6 +430,7 @@ class IDEView extends React.Component {
425430 }
426431 { this . props . ide . errorType &&
427432 < Overlay
433+ title = "Error"
428434 ariaLabel = "error"
429435 closeOverlay = { this . props . hideErrorModal }
430436 >
0 commit comments