File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
8
8
## [ Unreleased]
9
9
10
+ - TMS-1088: Change program dates to be queryable by redipress
11
+
10
12
## [ 1.9.1] - 2024-11-06
11
13
12
14
- TMS-1075-fix: Program page query fix
Original file line number Diff line number Diff line change @@ -223,14 +223,16 @@ protected function get_info_tab( string $key ) : Field\Tab {
223
223
->set_name ( 'apply_start ' )
224
224
->set_return_format ( 'Y-m-d ' )
225
225
->set_wrapper_width ( 50 )
226
- ->set_instructions ( $ strings ['apply_start ' ]['instructions ' ] );
226
+ ->set_instructions ( $ strings ['apply_start ' ]['instructions ' ] )
227
+ ->redipress_add_queryable ();
227
228
228
229
$ apply_end_field = ( new Field \DatePicker ( $ strings ['apply_end ' ]['title ' ] ) )
229
230
->set_key ( "{$ key }_apply_end " )
230
231
->set_name ( 'apply_end ' )
231
232
->set_return_format ( 'Y-m-d ' )
232
233
->set_wrapper_width ( 50 )
233
- ->set_instructions ( $ strings ['apply_end ' ]['instructions ' ] );
234
+ ->set_instructions ( $ strings ['apply_end ' ]['instructions ' ] )
235
+ ->redipress_add_queryable ();
234
236
235
237
$ apply_info_field = ( new Field \Text ( $ strings ['apply_info ' ]['title ' ] ) )
236
238
->set_key ( "{$ key }_apply_info " )
You can’t perform that action at this time.
0 commit comments