chore: set empty string for phase_id filter if ALL phase is selected

This commit is contained in:
ValdiANS
2026-01-21 14:19:58 +07:00
parent 149b14e0f8
commit 362ae16c7d
@@ -292,7 +292,7 @@ export function DailyChecklistReportsContent() {
};
const phaseChangeHandler = (value: string) => {
updateFilter('phase_id', value);
updateFilter('phase_id', value === 'ALL' ? '' : value);
};
const employeeChangeHandler = (value: string) => {