fix(snooze-button): Change div to button

This commit is contained in:
Juan Tejada 2016-03-09 16:10:15 -08:00
parent 7b3d8b1c25
commit fcf8fa766c

View file

@ -44,7 +44,7 @@ class SnoozeButton extends Component {
return <span />;
}
return (
<div
<button
title="Snooze"
className={"snooze-button " + this.props.className}
onClick={this.onClick}>
@ -54,7 +54,7 @@ class SnoozeButton extends Component {
mode={RetinaImg.Mode.ContentIsMask} /> :
void 0
}
</div>
</button>
);
}
}