From 8a9d88395654e2182be6c21cf5183f24ad5e6814 Mon Sep 17 00:00:00 2001 From: Alex Liebowitz Date: Tue, 10 May 2016 06:34:53 -0400 Subject: [PATCH] Add title prop to Link class --- js/component/common.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/component/common.js b/js/component/common.js index c1dd5610e..13d6544d9 100644 --- a/js/component/common.js +++ b/js/component/common.js @@ -18,7 +18,8 @@ var Link = React.createClass({ className = (this.props.button ? 'button-block button-' + this.props.button : 'button-text') + (this.props.hidden ? ' hidden' : '') + (this.props.disabled ? ' disabled' : ''); return ( - + {this.props.icon ? icon : '' } {this.props.label}