Skip to content
This repository was archived by the owner on Sep 26, 2020. It is now read-only.

Commit cdcface

Browse files
authored
#137: Fix missing binding (#139)
1 parent 2860ac1 commit cdcface

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui-vaadin/src/main/kotlin/edu/wpi/axon/ui/view/jobs/JobEditorForm.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class JobEditorForm : KComposite(), KoinComponent {
7272
formItem("Name") {
7373
textField {
7474
setWidthFull()
75-
bind(binder).asRequired()
75+
bind(binder).asRequired().bind(Job::name)
7676
}
7777
}
7878
formItem("Dataset") {

0 commit comments

Comments
 (0)