We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69904db commit e1db90dCopy full SHA for e1db90d
1 file changed
DevLog/UI/Home/TodoEditorView.swift
@@ -35,7 +35,7 @@ struct TodoEditorView: View {
35
}
36
37
.onTapGesture {
38
- field = .description
+ field = .content
39
40
.navigationTitle(viewModel.navigationTitle)
41
.navigationBarTitleDisplayMode(.inline)
@@ -81,7 +81,7 @@ struct TodoEditorView: View {
81
HStack(spacing: 0) {
82
Button(action: {
83
viewModel.send(.setTabViewTag(.editor))
84
85
}) {
86
Text("편집")
87
.frame(maxWidth: .infinity)
@@ -121,7 +121,7 @@ struct TodoEditorView: View {
121
axis: .vertical
122
)
123
.font(.callout)
124
- .focused($field, equals: .description)
+ .focused($field, equals: .content)
125
126
} else {
127
if viewModel.state.content.isEmpty {
0 commit comments