Skip to content

Commit e1db90d

Browse files
committed
style: description -> content
1 parent 69904db commit e1db90d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

DevLog/UI/Home/TodoEditorView.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ struct TodoEditorView: View {
3535
}
3636
}
3737
.onTapGesture {
38-
field = .description
38+
field = .content
3939
}
4040
.navigationTitle(viewModel.navigationTitle)
4141
.navigationBarTitleDisplayMode(.inline)
@@ -81,7 +81,7 @@ struct TodoEditorView: View {
8181
HStack(spacing: 0) {
8282
Button(action: {
8383
viewModel.send(.setTabViewTag(.editor))
84-
field = .description
84+
field = .content
8585
}) {
8686
Text("편집")
8787
.frame(maxWidth: .infinity)
@@ -121,7 +121,7 @@ struct TodoEditorView: View {
121121
axis: .vertical
122122
)
123123
.font(.callout)
124-
.focused($field, equals: .description)
124+
.focused($field, equals: .content)
125125
}
126126
} else {
127127
if viewModel.state.content.isEmpty {

0 commit comments

Comments
 (0)