mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
fix(apple): Align fields in Advanced Settings (#4025)
Align the fields in the iOS Advanced Settings form. Fixes #3997.
This commit is contained in:
@@ -409,9 +409,10 @@ public struct SettingsView: View {
|
||||
Form {
|
||||
Section(
|
||||
content: {
|
||||
HStack(spacing: 15) {
|
||||
VStack(alignment: .leading, spacing: 2) {
|
||||
Text("Auth Base URL")
|
||||
.foregroundStyle(.secondary)
|
||||
.font(.caption)
|
||||
TextField(
|
||||
PlaceholderText.authBaseURL,
|
||||
text: Binding(
|
||||
@@ -423,9 +424,10 @@ public struct SettingsView: View {
|
||||
.textInputAutocapitalization(.never)
|
||||
.submitLabel(.done)
|
||||
}
|
||||
HStack(spacing: 15) {
|
||||
VStack(alignment: .leading, spacing: 2) {
|
||||
Text("API URL")
|
||||
.foregroundStyle(.secondary)
|
||||
.font(.caption)
|
||||
TextField(
|
||||
PlaceholderText.apiURL,
|
||||
text: Binding(
|
||||
@@ -437,9 +439,10 @@ public struct SettingsView: View {
|
||||
.textInputAutocapitalization(.never)
|
||||
.submitLabel(.done)
|
||||
}
|
||||
HStack(spacing: 15) {
|
||||
VStack(alignment: .leading, spacing: 2) {
|
||||
Text("Log Filter")
|
||||
.foregroundStyle(.secondary)
|
||||
.font(.caption)
|
||||
TextField(
|
||||
PlaceholderText.logFilter,
|
||||
text: Binding(
|
||||
|
||||
Reference in New Issue
Block a user