(event)
| 1135 | } |
| 1136 | |
| 1137 | function clearDateFilter(event) { |
| 1138 | if (event) { |
| 1139 | event.preventDefault(); |
| 1140 | event.stopPropagation(); |
| 1141 | } |
| 1142 | selectedDate = null; |
| 1143 | updateDateFilterDisplay(); |
| 1144 | saveFilters(); |
| 1145 | applyFilters(); |
| 1146 | } |
| 1147 | |
| 1148 | // Filter persistence |
| 1149 | const FILTERS_KEY = "picker_filters"; |
nothing calls this directly
no test coverage detected