Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/components/Compare/PackageSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ function handleFocus() {
:aria-label="$t('compare.no_dependency.add_column')"
@click="addPackage(NO_DEPENDENCY_ID)"
>
<span class="text-sm text-accent italic flex items-center gap-2 block">
<span class="text-sm text-accent italic flex items-center gap-2">
<span class="i-carbon:clean w-4 h-4" aria-hidden="true" />
{{ $t('compare.no_dependency.typeahead_title') }}
</span>
Expand Down
2 changes: 1 addition & 1 deletion app/components/Package/DeprecatedTree.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function getDepthStyle(depth: DependencyDepth) {
aria-controls="deprecated-tree-details"
@click="isExpanded = !isExpanded"
>
<span class="flex items-center gap-2 min-w-0 block">
<span class="flex items-center gap-2 min-w-0">
<span class="i-carbon-warning-hex w-4 h-4 shrink-0" aria-hidden="true" />
<span class="font-mono text-sm font-medium truncate">
{{ $t('package.deprecated.tree_found', analysisData!.deprecatedPackages.length) }}
Expand Down
2 changes: 1 addition & 1 deletion app/components/Package/VulnerabilityTree.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function getDepthStyle(depth: string | undefined) {
aria-controls="vuln-tree-details"
@click="isExpanded = !isExpanded"
>
<span class="flex items-center gap-2 min-w-0 block">
<span class="flex items-center gap-2 min-w-0">
<span class="i-carbon:warning-alt w-4 h-4 shrink-0" aria-hidden="true" />
<span class="font-mono text-sm font-medium truncate">
{{
Expand Down
Loading