native macOS codings agent orchestrator
6
fork

Configure Feed

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

Merge pull request #202 from yaroslavyaroslav/fix/script-input-field-new-line

Fix multiline script editor in settings

authored by

Stefano Bertagno and committed by
GitHub
5016e259 afff3d51

+5 -3
+5 -3
supacode/Features/Settings/Views/RepositorySettingsView.swift
··· 131 131 132 132 var body: some View { 133 133 Section { 134 - TextField(title, text: text, axis: .vertical) 135 - .labelsHidden() 136 - .lineLimit(5, reservesSpace: true) 134 + TextEditor(text: text) 137 135 .monospaced() 136 + .textEditorStyle(.plain) 137 + .autocorrectionDisabled() 138 + .frame(height: 112) 139 + .accessibilityLabel(title) 138 140 } header: { 139 141 Text(title) 140 142 Text(subtitle)