diff --git a/packages/openchs-android/src/service/CustomDashboardCacheService.js b/packages/openchs-android/src/service/CustomDashboardCacheService.js index 75e7b060e..fab622b83 100644 --- a/packages/openchs-android/src/service/CustomDashboardCacheService.js +++ b/packages/openchs-android/src/service/CustomDashboardCacheService.js @@ -24,7 +24,7 @@ function getDashboardCache(service, dashboardUUID) { } function getDashboardFiltersHash(dashboard) { - const str = JSON.stringify(dashboard.filters.map((x) => x.filterConfig)); + const str = JSON.stringify(dashboard.filters.filter(x => !x.voided).map((x) => x.filterConfig)); return new Hashes.MD5().hex(str); }