File tree Expand file tree Collapse file tree 3 files changed +16
-5
lines changed
pages/diff/[[org]]/[packageName]/v Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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" />
Original file line number Diff line number Diff 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 -->
You can’t perform that action at this time.
0 commit comments