Fix date filtering bug in heatmap/calendar and sync selection state

This commit is contained in:
leeyj
2026-04-16 11:27:25 +09:00
parent 175a30325b
commit df8ae62b0e
8 changed files with 75 additions and 4 deletions
+6
View File
@@ -99,6 +99,12 @@ export const AppService = {
if (date !== undefined && this.state.currentFilterDate !== date) {
this.state.currentFilterDate = date;
changed = true;
// UI 동기화
CalendarManager.setSelectedDate(date);
if (HeatmapManager.setSelectedDate) {
HeatmapManager.setSelectedDate(date);
}
}
if (query !== undefined && this.state.currentSearchQuery !== query) {
this.state.currentSearchQuery = query;