mg-library 1.0.518 → 1.0.520
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/blocks.js +1 -2
- package/package.json +1 -1
package/blocks.js
CHANGED
@@ -109,7 +109,6 @@ export function MGBenefits(props) {
|
|
109
109
|
let listHeaderComponent = (
|
110
110
|
<View>
|
111
111
|
<MGSessionHeader module={subTitle} person={props.person} theme={props.theme} />
|
112
|
-
<MGDivider />
|
113
112
|
{props.beforeBenefits != undefined &&
|
114
113
|
<>
|
115
114
|
{props.beforeBenefits}
|
@@ -147,7 +146,7 @@ export function MGBenefits(props) {
|
|
147
146
|
</View>
|
148
147
|
}
|
149
148
|
<View style={{ flexGrow: 1, alignItems: 'center', marginBottom: 10 }}>
|
150
|
-
<Text style={{flexGrow: 1,
|
149
|
+
<Text style={{flexGrow: 1, textAlign: 'center'}}>{item.content}</Text>
|
151
150
|
</View>
|
152
151
|
</Card>
|
153
152
|
)}
|