[FIX] Disable reset button if form didn't changed (#1569)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
This commit is contained in:
parent
3a9ba9c681
commit
8ff6a3a27e
|
@ -425,9 +425,11 @@ class RoomInfoEditView extends React.Component {
|
||||||
style={[
|
style={[
|
||||||
styles.buttonContainer_inverted,
|
styles.buttonContainer_inverted,
|
||||||
styles.buttonInverted,
|
styles.buttonInverted,
|
||||||
{ flex: 1, borderColor: themes[theme].auxiliaryText }
|
{ flex: 1, borderColor: themes[theme].auxiliaryText },
|
||||||
|
!this.formIsChanged() && styles.buttonContainerDisabled
|
||||||
]}
|
]}
|
||||||
onPress={this.reset}
|
onPress={this.reset}
|
||||||
|
disabled={!this.formIsChanged()}
|
||||||
testID='room-info-edit-view-reset'
|
testID='room-info-edit-view-reset'
|
||||||
>
|
>
|
||||||
<Text
|
<Text
|
||||||
|
|
Loading…
Reference in New Issue