File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class TextInput extends Component {
6060}
6161
6262TextInput . defaultProps = {
63- onChange : ( ) => { } ,
63+ onChange : ( ) => { }
6464}
6565
6666TextInput . propTypes = {
@@ -79,7 +79,7 @@ TextInput.propTypes = {
7979 * Show help icon next to the value with the tooltip defined by this prop
8080 * This only has any effect if `readonly` is set to `true`
8181 */
82- readonlyValueTooltip : PT . node ,
82+ readonlyValueTooltip : PT . node
8383}
8484
8585export default hoc ( TextInput )
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const HELP_TOOLTIP_SHOW_DELAY = 300
1616const HelpIcon = ( {
1717 className,
1818 showTooltipDelay,
19- tooltip,
19+ tooltip
2020} ) => {
2121 const delay = ! _ . isNumber ( showTooltipDelay ) ? showTooltipDelay : HELP_TOOLTIP_SHOW_DELAY
2222
@@ -34,7 +34,7 @@ const HelpIcon = ({
3434HelpIcon . propTypes = {
3535 className : PT . string ,
3636 showTooltipDelay : PT . number ,
37- tooltip : PT . node ,
37+ tooltip : PT . node
3838}
3939
4040export default HelpIcon
You can’t perform that action at this time.
0 commit comments