Skip to content

Commit ae0348f

Browse files
[autofix.ci] apply automated fixes
1 parent c27d6f5 commit ae0348f

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

app/components/Package/SkillsModal.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ function getWarningTooltip(skill: SkillListItem): string | undefined {
6767
: 'border-transparent text-fg-subtle hover:text-fg'
6868
"
6969
@click="selectedMethod = 'skills-npm'"
70-
>{{ $t('package.skills.method_npm') }}</button>
70+
>
71+
{{ $t('package.skills.method_npm') }}
72+
</button>
7173
<button
7274
role="tab"
7375
:aria-selected="selectedMethod === 'skills-cli'"
@@ -80,7 +82,9 @@ function getWarningTooltip(skill: SkillListItem): string | undefined {
8082
: 'border-transparent text-fg-subtle hover:text-fg'
8183
"
8284
@click="selectedMethod = 'skills-cli'"
83-
>{{ $t('package.skills.method_cli') }}</button>
85+
>
86+
{{ $t('package.skills.method_cli') }}
87+
</button>
8488
</div>
8589
</div>
8690

app/components/diff/ViewerPanel.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,10 @@ function getCodeUrl(version: string): string {
174174
>
175175
<div class="flex flex-col gap-2">
176176
<!-- Merge modified lines toggle -->
177-
<SettingsToggle :label="$t('compare.viewer.merge_modified_lines')" v-model="mergeModifiedLines" />
177+
<SettingsToggle
178+
:label="$t('compare.viewer.merge_modified_lines')"
179+
v-model="mergeModifiedLines"
180+
/>
178181

179182
<!-- Word wrap toggle -->
180183
<SettingsToggle :label="$t('compare.viewer.word_wrap')" v-model="wordWrap" />

app/pages/diff/[[org]]/[packageName]/v/[versionRange].vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,9 @@ useSeoMeta({
137137
<p class="text-fg-muted mb-4">
138138
{{ $t('compare.invalid_url') }}
139139
</p>
140-
<NuxtLink :to="packageRoute(packageName)" class="btn">{{ $t('compare.go_to_package') }}</NuxtLink>
140+
<NuxtLink :to="packageRoute(packageName)" class="btn">{{
141+
$t('compare.go_to_package')
142+
}}</NuxtLink>
141143
</div>
142144

143145
<!-- Loading state -->
@@ -149,7 +151,9 @@ useSeoMeta({
149151
<!-- Error state -->
150152
<div v-else-if="compareStatus === 'error'" class="container py-20 text-center" role="alert">
151153
<p class="text-fg-muted mb-4">{{ $t('compare.failed_to_compare') }}</p>
152-
<NuxtLink :to="packageRoute(packageName)" class="btn">{{ $t('compare.back_to_package') }}</NuxtLink>
154+
<NuxtLink :to="packageRoute(packageName)" class="btn">{{
155+
$t('compare.back_to_package')
156+
}}</NuxtLink>
153157
</div>
154158

155159
<!-- Comparison content -->

0 commit comments

Comments
 (0)