@@ -74,11 +74,41 @@ ReduxQuerySync({
74
74
selector : ( state : RootState ) => state . continuous . until ,
75
75
action : continuousActions . setUntil ,
76
76
} ,
77
+ leftFrom : {
78
+ defaultValue : 'now-1h' ,
79
+ selector : ( state : RootState ) => state . continuous . leftFrom ,
80
+ action : continuousActions . setLeftFrom ,
81
+ } ,
82
+ leftUntil : {
83
+ defaultValue : 'now-30m' ,
84
+ selector : ( state : RootState ) => state . continuous . leftUntil ,
85
+ action : continuousActions . setLeftUntil ,
86
+ } ,
87
+ rightFrom : {
88
+ defaultValue : 'now-30m' ,
89
+ selector : ( state : RootState ) => state . continuous . rightFrom ,
90
+ action : continuousActions . setRightFrom ,
91
+ } ,
92
+ rightUntil : {
93
+ defaultValue : 'now' ,
94
+ selector : ( state : RootState ) => state . continuous . rightUntil ,
95
+ action : continuousActions . setRightUntil ,
96
+ } ,
77
97
query : {
78
98
defaultvalue : '' ,
79
99
selector : ( state : RootState ) => state . continuous . query ,
80
100
action : continuousActions . setQuery ,
81
101
} ,
102
+ rightQuery : {
103
+ defaultvalue : '' ,
104
+ selector : ( state : RootState ) => state . continuous . rightQuery ,
105
+ action : continuousActions . setRightQuery ,
106
+ } ,
107
+ leftQuery : {
108
+ defaultvalue : '' ,
109
+ selector : ( state : RootState ) => state . continuous . leftQuery ,
110
+ action : continuousActions . setLeftQuery ,
111
+ } ,
82
112
maxNodes : {
83
113
defaultValue : '0' ,
84
114
selector : ( state : RootState ) => state . continuous . maxNodes ,
0 commit comments