diff --git a/client/homebrew/homebrew.jsx b/client/homebrew/homebrew.jsx index 8299cfe87..2226c4f3f 100644 --- a/client/homebrew/homebrew.jsx +++ b/client/homebrew/homebrew.jsx @@ -71,9 +71,9 @@ const Homebrew = createClass({ } /> } /> } /> - } /> - } /> - } /> + } /> + } /> + } /> } /> } /> } /> diff --git a/client/homebrew/pages/sharePage/sharePage.jsx b/client/homebrew/pages/sharePage/sharePage.jsx index 390e577d0..9b4f9b73d 100644 --- a/client/homebrew/pages/sharePage/sharePage.jsx +++ b/client/homebrew/pages/sharePage/sharePage.jsx @@ -18,7 +18,8 @@ const SharePage = createClass({ displayName : 'SharePage', getDefaultProps : function() { return { - brew : DEFAULT_BREW_LOAD, + brew : DEFAULT_BREW_LOAD, + disableMeta : false }; }, @@ -68,13 +69,21 @@ const SharePage = createClass({ }, render : function(){ + const titleStyle = this.props.disableMeta ? { cursor: 'default' } : {}; + const titleEl = {this.props.brew.title}; + return
- - {this.props.brew.title} - + { + this.props.disableMeta ? + titleEl + : + + {titleEl} + + }