@@ -190,6 +190,7 @@ class IDEView extends React.Component {
190
190
< Toolbar />
191
191
{ this . props . ide . preferencesIsVisible &&
192
192
< Overlay
193
+ title = "Settings"
193
194
ariaLabel = "settings"
194
195
closeOverlay = { this . props . closePreferences }
195
196
>
@@ -363,6 +364,7 @@ class IDEView extends React.Component {
363
364
}
364
365
{ this . props . location . pathname === '/about' &&
365
366
< Overlay
367
+ title = "About"
366
368
previousPath = { this . props . ide . previousPath }
367
369
ariaLabel = "about"
368
370
>
@@ -371,6 +373,7 @@ class IDEView extends React.Component {
371
373
}
372
374
{ this . props . location . pathname === '/feedback' &&
373
375
< Overlay
376
+ title = "Submit Feedback"
374
377
previousPath = { this . props . ide . previousPath }
375
378
ariaLabel = "submit-feedback"
376
379
>
@@ -394,6 +397,7 @@ class IDEView extends React.Component {
394
397
}
395
398
{ this . props . ide . shareModalVisible &&
396
399
< Overlay
400
+ title = "Share"
397
401
ariaLabel = "share"
398
402
closeOverlay = { this . props . closeShareModal }
399
403
>
@@ -406,6 +410,7 @@ class IDEView extends React.Component {
406
410
}
407
411
{ this . props . ide . keyboardShortcutVisible &&
408
412
< Overlay
413
+ title = "Keyboard Shortcuts"
409
414
ariaLabel = "keyboard shortcuts"
410
415
closeOverlay = { this . props . closeKeyboardShortcutModal }
411
416
>
@@ -414,6 +419,7 @@ class IDEView extends React.Component {
414
419
}
415
420
{ this . props . ide . errorType &&
416
421
< Overlay
422
+ title = "Error"
417
423
ariaLabel = "error"
418
424
closeOverlay = { this . props . hideErrorModal }
419
425
>
0 commit comments