Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ import {
normalizeSelectedValues as normalizeSelectedFilterValues,
type ProjectVersionFilterOption,
type ProjectVersionFilterOptionProjectMetadata,
} from './query-filter.ts'
} from './query-filter-utils.ts'

type AnalyticsFilterValueCategory = Exclude<AnalyticsQueryFilterCategory, 'project'>
type GameVersionType = 'release' | 'all'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ import {
getAnalyticsStatsForBreakdown,
getAnalyticsStatsForFilterCategory,
getEnabledAnalyticsStatsForState,
} from './query-filter.ts'
} from './query-filter-utils.ts'
import QueryBuilderFilter from './QueryFilter.vue'
import {
ensureMinimumTimeRange,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Labrinth } from '@modrinth/api-client'

import type { ProjectStatusFilterValue } from '~/components/analytics-dashboard/query-builder/query-filter'
import type { ProjectStatusFilterValue } from '~/components/analytics-dashboard/query-builder/query-filter-utils'

import { getProjectIdsMatchingStatusFilter } from './analytics-project-utils'
import type {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
getProjectStatusFilterValue,
type ProjectStatusFilterValue,
} from '~/components/analytics-dashboard/query-builder/query-filter'
} from '~/components/analytics-dashboard/query-builder/query-filter-utils'

import type {
AnalyticsDashboardProject,
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/src/providers/analytics/analytics-types.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Labrinth } from '@modrinth/api-client'
import type { LocationQueryValueRaw } from 'vue-router'

import type { ProjectStatusFilterValue } from '~/components/analytics-dashboard/query-builder/query-filter'
import type { ProjectStatusFilterValue } from '~/components/analytics-dashboard/query-builder/query-filter-utils'

export type AnalyticsQueryFilterCategory =
| 'project'
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/src/providers/analytics/analytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import {
PROJECT_STATUS_FILTER_VALUES,
type ProjectStatusFilterValue,
sanitizeAnalyticsSelectedFilters,
} from '~/components/analytics-dashboard/query-builder/query-filter'
} from '~/components/analytics-dashboard/query-builder/query-filter-utils'
import { useAnalyticsRouteSync } from '~/components/analytics-dashboard/use-analytics-route-sync'

import type { OrganizationContext } from '../organization-context'
Expand Down
Loading