ref(Notification.native): remove unnecessary View
The styles.actionColumn does not exist. It looks the same without the extra View.
This commit is contained in:
parent
26d906fa46
commit
95785a9585
|
@ -88,13 +88,11 @@ class Notification extends AbstractNotification<Props> {
|
|||
</View>
|
||||
{
|
||||
isDismissAllowed
|
||||
&& <View style = { styles.actionColumn }>
|
||||
<TouchableOpacity onPress = { this._onDismissed }>
|
||||
<Icon
|
||||
name = { 'close' }
|
||||
style = { styles.dismissIcon } />
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
&& <TouchableOpacity onPress = { this._onDismissed }>
|
||||
<Icon
|
||||
name = { 'close' }
|
||||
style = { styles.dismissIcon } />
|
||||
</TouchableOpacity>
|
||||
}
|
||||
</View>
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue