Skip to content

Commit

Permalink
Removed tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
gylxan committed Nov 26, 2017
1 parent 7e9be64 commit 906a27f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/Entscheidomat/components/Toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class EntscheidomatToolbar extends React.Component {
key={option.name}
tooltipPosition={"top-center"}
iconClassName={option.iconClass}
tooltip={option.tooltip}
// tooltip={option.tooltip}
iconStyle={{
color: (this.state.optionValues[option.name] ? "rgba(0, 0, 0, 0.87)" : "rgba(0, 0, 0, 0.26)")
}}
Expand All @@ -117,7 +117,8 @@ class EntscheidomatToolbar extends React.Component {
iconStyle={{
color: (option.hasOwnProperty("inactiveValue") && this.state.optionValues[option.name] === option.inactiveValue ? "rgba(0, 0, 0, 0.26)" : "rgba(0, 0, 0, 0.87)")
}}
tooltip={option.tooltip}>{option.iconId}</IconButton>}
// tooltip={option.tooltip}
>{option.iconId}</IconButton>}
anchorOrigin={{horizontal: 'right', vertical: 'top'}}
targetOrigin={{horizontal: 'right', vertical: 'top'}}
onChange={(event, value) => this.handleOptionChange(event, value, option.name)}
Expand Down

0 comments on commit 906a27f

Please sign in to comment.