native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix swallowed trailing space in repo Display name field

The TextField sat directly inside a `.formStyle(.grouped)` Form, which
auto-applied LabeledContent rendering and forced trailing-aligned text
inside the field. Trailing spaces visually clipped against the right
edge, making typed spaces appear lost. Wrap the field in an explicit
HStack with a Name label and `.labelsHidden()` so Form leaves the
TextField's internal layout alone and the cursor moves leading-aligned
as expected.

onevcat ef9bfc9f 41344e95

+8 -2
+8 -2
supacode/Features/Settings/Views/RepositorySettingsView.swift
··· 73 73 Form { 74 74 Section("Display") { 75 75 VStack(alignment: .leading, spacing: 12) { 76 - TextField("Name", text: customTitle, prompt: Text(folderName)) 77 - .textFieldStyle(.roundedBorder) 76 + HStack { 77 + Text("Name") 78 + Spacer().frame(width: 20) 79 + TextField("", text: customTitle, prompt: Text(folderName)) 80 + .frame(width: 300) 81 + .textFieldStyle(.roundedBorder) 82 + .labelsHidden() 83 + } 78 84 Divider() 79 85 RepositoryAppearancePickerView(store: store) 80 86 }