@@ -1631,7 +1631,7 @@ const chartConfig = computed<VueUiXyConfig>(() => {
16311631})
16321632
16331633const isDownloadsMetric = computed (() => selectedMetric .value === ' downloads' )
1634- const showFilterControls = shallowRef (false )
1634+ const showCorrectionControls = shallowRef (false )
16351635
16361636// Trigger data loading when the metric is switched
16371637watch (selectedMetric , value => {
@@ -1726,19 +1726,19 @@ watch(selectedMetric, value => {
17261726 <button
17271727 type =" button"
17281728 class =" self-start flex items-center gap-1 text-2xs font-mono text-fg-subtle hover:text-fg transition-colors"
1729- @click =" showFilterControls = !showFilterControls "
1729+ @click =" showCorrectionControls = !showCorrectionControls "
17301730 >
17311731 <span
17321732 class =" w-3.5 h-3.5 transition-transform"
1733- :class =" showFilterControls ? 'i-lucide:chevron-down' : 'i-lucide:chevron-right'"
1733+ :class =" showCorrectionControls ? 'i-lucide:chevron-down' : 'i-lucide:chevron-right'"
17341734 aria-hidden =" true"
17351735 />
1736- {{ $t('package.trends.filters ') }}
1736+ {{ $t('package.trends.data_correction ') }}
17371737 </button >
1738- <div v-if =" showFilterControls " class =" flex items-end gap-3" >
1738+ <div v-if =" showCorrectionControls " class =" flex items-end gap-3" >
17391739 <label class =" flex flex-col gap-1 flex-1" >
17401740 <span class =" text-2xs font-mono text-fg-subtle tracking-wide uppercase" >
1741- {{ $t('package.trends.average ') }}
1741+ {{ $t('package.trends.average_window ') }}
17421742 <span class =" text-fg-muted" >({{ settings.chartFilter.averageWindow }})</span >
17431743 </span >
17441744 <input
0 commit comments