This repository was archived by the owner on Oct 11, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed
ui/inspectors/calendar-task.reel Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ exports.CalendarTask = AbstractInspector.specialize({
87
87
save : {
88
88
value : function ( ) {
89
89
if ( this . argsInspector && typeof this . argsInspector . save === 'function' ) {
90
- this . argsInspector . save ( ) ;
90
+ this . object . args = this . argsInspector . save ( ) ;
91
91
}
92
92
this . _sectionService . updateScheduleOnTask ( this . object ) ;
93
93
var argsLength = this . object . args . length ;
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ exports.ReplicationArgs = Component.specialize(/** @lends ReplicationArgs# */ {
64
64
save : {
65
65
value : function ( ) {
66
66
this . object [ 0 ] = this . sourceDataset . pathInput . value ;
67
+ return this . object ;
67
68
}
68
69
} ,
69
70
Original file line number Diff line number Diff line change 210
210
"label" : "Preserve attributes"
211
211
} ,
212
212
"bindings" : {
213
- "checked" : { "<->" : "@owner.object.0.rsync_properties.preserve_attributes " }
213
+ "checked" : { "<->" : "@owner.object.0.rsync_properties.delay_updates " }
214
214
}
215
215
} ,
216
216
"extra" : {
220
220
"label" : "Extra arguments"
221
221
} ,
222
222
"bindings" : {
223
- "value" : { "<->" : "@owner.object.0.rsync_properties.extra " }
223
+ "value" : { "<->" : "@owner._extra " }
224
224
}
225
225
}
226
226
}
Original file line number Diff line number Diff line change @@ -48,6 +48,14 @@ exports.RsyncArgs = Component.specialize({
48
48
this . object = [ { rsync_properties : { } } ] ;
49
49
this . object . __type = this . type ;
50
50
}
51
+ this . _extra = this . object [ 0 ] . rsync_properties . extra ;
52
+ }
53
+ } ,
54
+
55
+ save : {
56
+ value : function ( ) {
57
+ this . object [ 0 ] . rsync_properties . extra = this . _extra ;
58
+ return this . object ;
51
59
}
52
60
}
53
61
} ) ;
You can’t perform that action at this time.
0 commit comments