Skip to content

Commit 6a14e76

Browse files
[autofix.ci] apply automated fixes
1 parent fa48ca7 commit 6a14e76

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

app/components/Package/TrendsChart.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1390,7 +1390,9 @@ const chartConfig = computed<VueUiXyConfig>(() => {
13901390
theme: isDarkMode.value ? 'dark' : ('' as VueDataUiTheme),
13911391
a11y: {
13921392
translations: {
1393-
keyboardNavigation: $t('package.trends.chart_assistive_text.keyboard_navigation_horizontal'),
1393+
keyboardNavigation: $t(
1394+
'package.trends.chart_assistive_text.keyboard_navigation_horizontal',
1395+
),
13941396
tableAvailable: $t('package.trends.chart_assistive_text.table_available'),
13951397
tableCaption: $t('package.trends.chart_assistive_text.table_caption'),
13961398
},

app/components/Package/VersionDistribution.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,9 @@ const chartConfig = computed<VueUiXyConfig>(() => {
163163
theme: isDarkMode.value ? 'dark' : '',
164164
a11y: {
165165
translations: {
166-
keyboardNavigation: $t('package.trends.chart_assistive_text.keyboard_navigation_horizontal'),
166+
keyboardNavigation: $t(
167+
'package.trends.chart_assistive_text.keyboard_navigation_horizontal',
168+
),
167169
tableAvailable: $t('package.trends.chart_assistive_text.table_available'),
168170
tableCaption: $t('package.trends.chart_assistive_text.table_caption'),
169171
},

app/components/Package/WeeklyDownloadStats.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,9 @@ const config = computed<VueUiSparklineConfig>(() => {
315315
return {
316316
a11y: {
317317
translations: {
318-
keyboardNavigation: $t('package.trends.chart_assistive_text.keyboard_navigation_horizontal'),
318+
keyboardNavigation: $t(
319+
'package.trends.chart_assistive_text.keyboard_navigation_horizontal',
320+
),
319321
tableAvailable: $t('package.trends.chart_assistive_text.table_available'),
320322
tableCaption: $t('package.trends.chart_assistive_text.table_caption'),
321323
},

0 commit comments

Comments
 (0)