...
 
Commits (3)
......@@ -39,7 +39,7 @@ exports[`blog card component should renders correctly 1`] = `
source={
Object {
"headers": Object {
"App-Version": "3.7.1",
"App-Version": "3.7.2",
"Cache-Control": "no-cache, no-store, must-revalidate",
"Pragma": "no-cache",
},
......
......@@ -160,7 +160,7 @@ exports[`blog view screen component should renders correctly 1`] = `
source={
Object {
"headers": Object {
"App-Version": "3.7.1",
"App-Version": "3.7.2",
"Cache-Control": "no-cache, no-store, must-revalidate",
"Pragma": "no-cache",
},
......
......@@ -22,7 +22,7 @@ exports[`channel header component owner should render correctly 1`] = `
source={
Object {
"headers": Object {
"App-Version": "3.7.1",
"App-Version": "3.7.2",
"Cache-Control": "no-cache, no-store, must-revalidate",
"Pragma": "no-cache",
},
......
......@@ -22,10 +22,10 @@ org.gradle.jvmargs=-Xmx2048m
systemProp.org.gradle.internal.http.connectionTimeout=180000
systemProp.org.gradle.internal.http.socketTimeout=180000
versionName=3.7.1
versionName=3.7.2
# CUSTOM
versionCode=1050000004
versionCode=1050000005
# PLAY STORE
#versionCode=310025
#versionCode=310026
......@@ -19,7 +19,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>3.7.1</string>
<string>3.7.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
......@@ -36,7 +36,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>201906130001</string>
<string>201907030001</string>
<key>CodePushDeploymentKey</key>
<string>_C083_CqL7CmKwASrv6Xrj1wqH7erJMhIBnRQ</string>
<key>ITSAppUsesNonExemptEncryption</key>
......
......@@ -34,13 +34,15 @@ import i18n from '../common/services/i18n.service';
export default class BoostActionBar extends Component {
render() {
let actions = null;
if(this.props.entity.currency !== 'tokens') actions = this.renderActions();
return (
<View style={styles.container}>
{this.renderTarget()}
{this.renderViews()}
{this.renderBid()}
{this.renderStatus()}
{this.renderActions()}
{actions}
</View>
);
}
......
export const Version = {
VERSION: '3.7.1',
BUILD: '20190614'
VERSION: '3.7.2',
BUILD: '20190703'
};