|
@@ -358,7 +358,7 @@ class DesktopPicker extends PureComponent<IProps, IState> {
|
358
|
358
|
type => {
|
359
|
359
|
return {
|
360
|
360
|
accessibilityLabel: t(TAB_LABELS[type as keyof typeof TAB_LABELS]),
|
361
|
|
- id: `${type}-tab`,
|
|
361
|
+ id: `${type}`,
|
362
|
362
|
controlsId: `${type}-panel`,
|
363
|
363
|
label: t(TAB_LABELS[type as keyof typeof TAB_LABELS])
|
364
|
364
|
};
|
|
@@ -369,7 +369,7 @@ class DesktopPicker extends PureComponent<IProps, IState> {
|
369
|
369
|
accessibilityLabel = { t('dialog.sharingTabs') }
|
370
|
370
|
className = 'desktop-picker-tabs-container'
|
371
|
371
|
onChange = { this._onTabSelected }
|
372
|
|
- selected = { `${this.state.selectedTab}-tab` }
|
|
372
|
+ selected = { `${this.state.selectedTab}` }
|
373
|
373
|
tabs = { tabs } />);
|
374
|
374
|
}
|
375
|
375
|
|