Skip to content

Commit

Permalink
Merge pull request #99 from gthomas-appfolio/fixHelpBubble
Browse files Browse the repository at this point in the history
ap - fix help bubble icon
  • Loading branch information
aaronpanch authored Jan 18, 2017
2 parents 50fef73 + a03ad2b commit 2586d27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/HelpBubble.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class HelpBubble extends React.Component {

return (
<span className={className} style={style}>
<Icon name="question-sign" onClick={this.toggle} id={this.id} />
<Icon name="question-circle" onClick={this.toggle} id={this.id} />
<Popover isOpen={this.state.isOpen} toggle={this.toggle} target={this.id} {...other}>
<PopoverTitle children={title} />
<PopoverContent children={children} />
Expand Down
2 changes: 1 addition & 1 deletion test/components/HelpBubble.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import HelpBubble from '../../src/components/HelpBubble';
describe('<HelpBubble />', () => {
it('should have a question mark', () => {
const icon = mount(<HelpBubble title="hello" />).find(Icon);
assert.equal(icon.prop('name'), 'question-sign');
assert.equal(icon.prop('name'), 'question-circle');
});

it('should link popover and icon trigger', () => {
Expand Down

0 comments on commit 2586d27

Please sign in to comment.