Skip to content

Commit 2a91e6e

Browse files
committed
textfield & wider
1 parent e25df16 commit 2a91e6e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Coder-Desktop/Coder-Desktop/Views/FileSync/FileSyncConfig.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ struct FileSyncConfig<VPN: VPNService, FS: FileSyncDaemon>: View {
123123
}
124124
}.sheet(isPresented: $addingNewSession) {
125125
FileSyncSessionModal<VPN, FS>()
126-
.frame(width: 550)
126+
.frame(width: 700)
127127
}.onTapGesture {
128128
selection = nil
129129
}

Coder-Desktop/Coder-Desktop/Views/FileSync/FileSyncSessionModal.swift

+2-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ struct FileSyncSessionModal<VPN: VPNService, FS: FileSyncDaemon>: View {
1616
VStack(spacing: 0) {
1717
Form {
1818
Section {
19-
HStack {
20-
Text("Local Path")
21-
Text(localPath)
19+
HStack(spacing: 5) {
20+
TextField("Local Path", text: $localPath)
2221
Spacer()
2322
Button {
2423
let panel = NSOpenPanel()

0 commit comments

Comments
 (0)