0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-30 13:12:40 +00:00

Merge branch 'master' into pr/2089

This commit is contained in:
Trevor Buckner
2022-03-27 00:41:50 -04:00
4 changed files with 62 additions and 15 deletions

View File

@@ -32,11 +32,14 @@ const Homebrew = createClass({
}
};
},
componentWillMount : function() {
global.account = this.props.account;
getInitialState : function(){
global.version = this.props.version;
global.account = this.props.account;
global.enable_v3 = this.props.enable_v3;
return {};
},
render : function (){
return (
<Router location={this.props.url}>

View File

@@ -14,12 +14,10 @@ const Navbar = createClass({
};
},
componentDidMount : function() {
//const isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
this.setState({
//showNonChromeWarning : !isChrome,
ver : window.version
});
getInitialState : function() {
return {
ver : global.version
};
},
/*