Skip to content

Commit

Permalink
fix(FEC-6963): Icon change when only audio or captions available (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dvir Hazout committed Aug 7, 2017
1 parent 846a4df commit 7773404
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/language/language.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class LanguageControl extends BaseComponent {
className={this.state.smartContainerOpen ? 'control-button active' : 'control-button'}
onClick={() => this.onControlButtonClick()}
>
<Icon type={IconType.Audio} />
<Icon type={IconType.Language} />
</button>
{ !this.state.smartContainerOpen && !this.props.isMobile ? undefined :
<Menu
Expand All @@ -96,7 +96,7 @@ class LanguageControl extends BaseComponent {
className={this.state.smartContainerOpen ? 'control-button active' : 'control-button'}
onClick={() => this.onControlButtonClick()}
>
<Icon type={IconType.Captions} />
<Icon type={IconType.Language} />
</button>
{ !this.state.smartContainerOpen && !this.props.isMobile ? undefined :
<Menu
Expand Down

0 comments on commit 7773404

Please sign in to comment.