muba-posting 5.1.4 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Posting.js +1 -1
- package/Publish2.js +3 -3
- package/package.json +1 -1
package/Posting.js
CHANGED
|
@@ -495,7 +495,7 @@ export default class Posting extends React.Component {
|
|
|
495
495
|
context={this.props.context}
|
|
496
496
|
showLoading={() => this._showLoading()}
|
|
497
497
|
hideLoading={() => this._hideLoading()}
|
|
498
|
-
|
|
498
|
+
hereApiKey={this.props.hereApiKey}
|
|
499
499
|
fullPosting={this.state.fullPosting}
|
|
500
500
|
progressBarHeight={this.state.progressBarHeight}
|
|
501
501
|
headerHeight={this.state.headerHeight}
|
package/Publish2.js
CHANGED
|
@@ -109,7 +109,7 @@ export default class Publish2 extends React.Component {
|
|
|
109
109
|
render() {
|
|
110
110
|
return (
|
|
111
111
|
<View>
|
|
112
|
-
<Map
|
|
112
|
+
<Map hereApiKey={this.props.hereApiKey}
|
|
113
113
|
containerStyle={{ height: this.state.mapHeight }}
|
|
114
114
|
showPopupPermissions={true}
|
|
115
115
|
location={{ latitude: this.state.latitude, longitude: this.state.longitude, zoom: this.state.zoom }}
|
|
@@ -135,8 +135,8 @@ export default class Publish2 extends React.Component {
|
|
|
135
135
|
</PopupAdvice>
|
|
136
136
|
<PopupAdvice dialogStyle={commonStyles.popupBox} ref={(popupNoZone) => { this.popupNoZone = popupNoZone; }}
|
|
137
137
|
title={strings('setup.ad_cant_post_zone')} icon={<FontAwesomeIcon name='block' />}>
|
|
138
|
-
|
|
139
|
-
</PopupAdvice>
|
|
138
|
+
<Text style={commonStyles.popupText}></Text>
|
|
139
|
+
</PopupAdvice>
|
|
140
140
|
</View>
|
|
141
141
|
);
|
|
142
142
|
}
|