Skip to content
Snippets Groups Projects
Commit 1828beca authored by Lars van Rhijn's avatar Lars van Rhijn
Browse files

No undefined is displayed when description is empty

parent 9efca603
No related branches found
No related tags found
1 merge request!389Bug/checkbox
......@@ -151,14 +151,16 @@ class RegistrationScreen extends Component {
}}
/>
</View>
<HTML
html={field.description}
onLinkPress={(event, href) => openUrl(href)}
baseFontStyle={styles.description}
tagsStyles={{
a: linkStyles,
}}
/>
{!field.description || (
<HTML
html={field.description}
onLinkPress={(event, href) => openUrl(href)}
baseFontStyle={styles.description}
tagsStyles={{
a: linkStyles,
}}
/>
)}
{validity.isValid || (
<Text style={styles.invalid}>
{validity.reason}
......@@ -172,14 +174,16 @@ class RegistrationScreen extends Component {
<Text style={styles.field}>
{field.label}
</Text>
<HTML
html={field.description}
onLinkPress={(event, href) => openUrl(href)}
baseFontStyle={styles.description}
tagsStyles={{
a: linkStyles,
}}
/>
{!field.description || (
<HTML
html={field.description}
onLinkPress={(event, href) => openUrl(href)}
baseFontStyle={styles.description}
tagsStyles={{
a: linkStyles,
}}
/>
)}
<TextInput
value={this.state[key]}
onChangeText={value => this.updateField(key, value)}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment