File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
lib/app/modules/detailRoute/controllers Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ class DetailRouteController extends GetxController {
34
34
void setAttribute (String name, dynamic newValue) {
35
35
modify.set (name, newValue);
36
36
onEdit.value = true ;
37
+ if (name == 'start' ){
38
+ debugPrint ('Start Value Changed to $newValue ' );
39
+ startValue.value = newValue;
40
+ }
37
41
initValues ();
38
42
}
39
43
@@ -82,7 +86,7 @@ class DetailRouteController extends GetxController {
82
86
statusValue.value = modify.draft.status;
83
87
entryValue.value = modify.draft.entry;
84
88
modifiedValue.value = modify.draft.modified;
85
- startValue.value = modify.draft.start ;
89
+ startValue.value ?? = null ;
86
90
endValue.value = modify.draft.end;
87
91
dueValue.value = modify.draft.due;
88
92
waitValue.value = modify.draft.wait;
You can’t perform that action at this time.
0 commit comments