Skip to content

Commit e7739b7

Browse files
committed
fix: icon class name
1 parent 111e108 commit e7739b7

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

app/components/Package/Dependencies.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ const numberFormatter = useNumberFormatter()
102102
aria-hidden="true"
103103
:text="getOutdatedTooltip(outdatedDeps[dep], $t)"
104104
>
105-
<span class="i-lucide:circle-alert-alt w-3 h-3" />
105+
<span class="i-lucide:circle-alert w-3 h-3" />
106106
</TooltipApp>
107107
<LinkBase
108108
v-if="getVulnerableDepInfo(dep)"

app/components/Package/InstallScripts.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const isExpanded = shallowRef(false)
6161
<CollapsibleSection
6262
:title="$t('package.install_scripts.title')"
6363
id="installScripts"
64-
icon="i-lucide:circle-alert-alt w-3 h-3 text-yellow-500"
64+
icon="i-lucide:circle-alert w-3 h-3 text-yellow-500"
6565
>
6666
<!-- Script list: name as label, content below -->
6767
<dl class="space-y-2 m-0">
@@ -139,7 +139,7 @@ const isExpanded = shallowRef(false)
139139
aria-hidden="true"
140140
:text="getOutdatedTooltip(outdatedNpxDeps[dep], $t)"
141141
>
142-
<span class="i-lucide:circle-alert-alt w-3 h-3" />
142+
<span class="i-lucide:circle-alert w-3 h-3" />
143143
</TooltipApp>
144144
<span
145145
class="font-mono text-xs text-end truncate"

app/components/Package/VulnerabilityTree.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function getDepthStyle(depth: string | undefined) {
8484
@click="isExpanded = !isExpanded"
8585
>
8686
<span class="flex items-center gap-2 min-w-0">
87-
<span class="i-lucide:circle-alert-alt w-4 h-4 shrink-0" aria-hidden="true" />
87+
<span class="i-lucide:circle-alert w-4 h-4 shrink-0" aria-hidden="true" />
8888
<span class="font-mono text-sm font-medium truncate">
8989
{{
9090
$t(

app/pages/package-code/[[org]]/[packageName]/v/[version]/[...filePath].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ defineOgImageComponent('Default', {
541541

542542
<!-- Error loading file -->
543543
<div v-else-if="filePath && fileStatus === 'error'" class="py-20 text-center" role="alert">
544-
<div class="i-lucide:circle-alert-alt w-8 h-8 mx-auto text-fg-subtle mb-4" />
544+
<div class="i-lucide:circle-alert w-8 h-8 mx-auto text-fg-subtle mb-4" />
545545
<p class="text-fg-muted mb-2">{{ $t('code.failed_to_load') }}</p>
546546
<p class="text-fg-subtle text-sm mb-4">{{ $t('code.unavailable_hint') }}</p>
547547
<LinkBase

app/pages/package/[[org]]/[name].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1149,7 +1149,7 @@ const showSkeleton = shallowRef(false)
11491149
class="mb-4 rounded-lg border border-amber-600/40 bg-amber-500/10 px-4 py-3 text-amber-700 dark:text-amber-400"
11501150
>
11511151
<h3 class="m-0 flex items-center gap-2 font-mono text-sm font-medium">
1152-
<span class="i-lucide:circle-alert-alt w-4 h-4 shrink-0" aria-hidden="true" />
1152+
<span class="i-lucide:circle-alert w-4 h-4 shrink-0" aria-hidden="true" />
11531153
{{ $t('package.security_downgrade.title') }}
11541154
</h3>
11551155
<p class="mt-2 mb-0 text-sm">

0 commit comments

Comments
 (0)