Skip to content

Commit e5a21e3

Browse files
authored
Merge branch 'main' into i18n-zh-cn
2 parents 642b5ad + 29158b6 commit e5a21e3

27 files changed

Lines changed: 1191 additions & 177 deletions

File tree

app/components/AppHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const mobileLinks = computed<NavigationConfigWithGroups>(() => [
124124
])
125125
126126
const showFullSearch = shallowRef(false)
127-
const showMobileMenu = shallowRef(true)
127+
const showMobileMenu = shallowRef(false)
128128
const { env } = useAppConfig().buildInfo
129129
130130
// On mobile, clicking logo+search button expands search

app/components/Org/OperationsQueue.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ function getStatusIcon(status: string): string {
164164
case 'running':
165165
return 'i-svg-spinners:ring-resize'
166166
case 'completed':
167-
return 'i-lucide:check-filled'
167+
return 'i-lucide:check'
168168
case 'failed':
169-
return 'i-lucide:x-filled'
169+
return 'i-lucide:x'
170170
default:
171171
return 'i-lucide:circle-question-mark'
172172
}
@@ -410,8 +410,8 @@ watch(isExecuting, executing => {
410410
<span
411411
:class="
412412
op.status === 'completed'
413-
? 'i-lucide:check-filled text-green-500'
414-
: 'i-lucide:x-filled text-red-500'
413+
? 'i-lucide:check text-green-500'
414+
: 'i-lucide:x text-red-500'
415415
"
416416
class="w-3.5 h-3.5 shrink-0 mt-0.5"
417417
aria-hidden="true"

app/components/Package/ClaimPackageModal.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ const previewPackageJson = computed(() => {
158158
<div
159159
class="flex items-center gap-3 p-4 bg-green-500/10 border border-green-500/20 rounded-lg"
160160
>
161-
<span class="i-lucide:check-filled text-green-500 w-6 h-6" aria-hidden="true" />
161+
<span class="i-lucide:check text-green-500 w-6 h-6" aria-hidden="true" />
162162
<div>
163163
<p class="font-mono text-sm text-fg">{{ $t('claim.modal.success') }}</p>
164164
<p class="text-xs text-fg-muted">
@@ -226,15 +226,15 @@ const previewPackageJson = computed(() => {
226226
v-if="checkResult.available"
227227
class="flex items-center gap-3 p-4 bg-green-500/10 border border-green-500/20 rounded-lg"
228228
>
229-
<span class="i-lucide:check-filled text-green-500 w-5 h-5" aria-hidden="true" />
229+
<span class="i-lucide:check text-green-500 w-5 h-5" aria-hidden="true" />
230230
<p class="font-mono text-sm text-fg">{{ $t('claim.modal.available') }}</p>
231231
</div>
232232

233233
<div
234234
v-else
235235
class="flex items-center gap-3 p-4 bg-red-500/10 border border-red-500/20 rounded-lg"
236236
>
237-
<span class="i-lucide:x-filled text-red-500 w-5 h-5" aria-hidden="true" />
237+
<span class="i-lucide:x text-red-500 w-5 h-5" aria-hidden="true" />
238238
<p class="font-mono text-sm text-fg">{{ $t('claim.modal.taken') }}</p>
239239
</div>
240240
</div>

0 commit comments

Comments
 (0)