@@ -191,6 +191,7 @@ class IDEView extends React.Component {
191
191
< Toolbar />
192
192
{ this . props . ide . preferencesIsVisible &&
193
193
< Overlay
194
+ title = "Settings"
194
195
ariaLabel = "settings"
195
196
closeOverlay = { this . props . closePreferences }
196
197
>
@@ -389,6 +390,7 @@ class IDEView extends React.Component {
389
390
}
390
391
{ this . props . location . pathname === '/about' &&
391
392
< Overlay
393
+ title = "About"
392
394
previousPath = { this . props . ide . previousPath }
393
395
ariaLabel = "about"
394
396
>
@@ -397,6 +399,7 @@ class IDEView extends React.Component {
397
399
}
398
400
{ this . props . location . pathname === '/feedback' &&
399
401
< Overlay
402
+ title = "Submit Feedback"
400
403
previousPath = { this . props . ide . previousPath }
401
404
ariaLabel = "submit-feedback"
402
405
>
@@ -405,6 +408,7 @@ class IDEView extends React.Component {
405
408
}
406
409
{ this . props . ide . shareModalVisible &&
407
410
< Overlay
411
+ title = "Share"
408
412
ariaLabel = "share"
409
413
closeOverlay = { this . props . closeShareModal }
410
414
>
@@ -417,6 +421,7 @@ class IDEView extends React.Component {
417
421
}
418
422
{ this . props . ide . keyboardShortcutVisible &&
419
423
< Overlay
424
+ title = "Keyboard Shortcuts"
420
425
ariaLabel = "keyboard shortcuts"
421
426
closeOverlay = { this . props . closeKeyboardShortcutModal }
422
427
>
@@ -425,6 +430,7 @@ class IDEView extends React.Component {
425
430
}
426
431
{ this . props . ide . errorType &&
427
432
< Overlay
433
+ title = "Error"
428
434
ariaLabel = "error"
429
435
closeOverlay = { this . props . hideErrorModal }
430
436
>
0 commit comments