From 7d88bd0937033a2e18854fd6b98a2a40fbee92b2 Mon Sep 17 00:00:00 2001 From: Scott Gress Date: Tue, 12 May 2026 15:59:16 -0700 Subject: [PATCH] Remove mobile platforms from chart filter list (#45310) **Related issue:** Resolves #45290 Just drops the mobile platforms from the platform list in the chart filters modal. You can still find mobile devices by searching for now, as filtering them out is a bigger change requiring either backend work or on-the-glass filtering + pagination which is bug-prone. ## Summary by CodeRabbit * **Bug Fixes** * Updated platform filter options in chart filters. iOS, iPadOS, and Android are no longer available as filter options; macOS, Windows, Linux, and ChromeOS remain supported. [![Review Change Stack](https://storage.googleapis.com/coderabbit_public_assets/review-stack-in-coderabbit-ui.svg)](https://app.coderabbit.ai/change-stack/fleetdm/fleet/pull/45310) --- .../cards/ChartCard/ChartFilterModal/ChartFilterModal.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/pages/DashboardPage/cards/ChartCard/ChartFilterModal/ChartFilterModal.tsx b/frontend/pages/DashboardPage/cards/ChartCard/ChartFilterModal/ChartFilterModal.tsx index 24f28e537f..a3c277b1d2 100644 --- a/frontend/pages/DashboardPage/cards/ChartCard/ChartFilterModal/ChartFilterModal.tsx +++ b/frontend/pages/DashboardPage/cards/ChartCard/ChartFilterModal/ChartFilterModal.tsx @@ -26,9 +26,6 @@ const PLATFORM_OPTIONS = [ { label: "Windows", value: "windows" }, { label: "Linux", value: "linux" }, { label: "ChromeOS", value: "chrome" }, - { label: "iOS", value: "ios" }, - { label: "iPadOS", value: "ipados" }, - { label: "Android", value: "android" }, ]; type HostFilterMode = "none" | "include" | "exclude";