We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1ee92e7 + b8d5579 commit 9d6cbd0Copy full SHA for 9d6cbd0
1 file changed
app/src/main/java/to/bitkit/ui/settings/advanced/RgsServerScreen.kt
@@ -148,15 +148,19 @@ private fun Content(
148
text = stringResource(R.string.settings__es__button_reset),
149
onClick = onClickReset,
150
enabled = !uiState.isLoading && uiState.canReset,
151
- modifier = Modifier.weight(1f)
+ modifier = Modifier
152
+ .weight(1f)
153
+ .testTag("ResetToDefault")
154
)
155
156
PrimaryButton(
157
text = stringResource(R.string.settings__rgs__button_connect),
158
onClick = onClickConnect,
159
enabled = !uiState.isLoading && uiState.canConnect,
160
isLoading = uiState.isLoading,
161
162
163
+ .testTag("ConnectToHost")
164
165
}
166
VerticalSpacer(16.dp)
0 commit comments