(projectId)
| 54 | import { buildChartRuntimeRequest, normalizeChartFilterCondition } from "../../modules/chartRuntimeFilters"; |
| 55 | |
| 56 | const getFiltersFromStorage = (projectId) => { |
| 57 | try { |
| 58 | const filters = JSON.parse(window.localStorage.getItem("_cb_filters")); |
| 59 | return filters[projectId] || null; |
| 60 | } catch (e) { |
| 61 | return null; |
| 62 | } |
| 63 | }; |
| 64 | |
| 65 | /* |
| 66 | This is the container that generates the Charts together with the menu |
no outgoing calls
no test coverage detected