diff --git a/src/app/features/tag/tag/tag.component.html b/src/app/features/tag/tag/tag.component.html
index ba3fc3cb0f..68a869a95a 100644
--- a/src/app/features/tag/tag/tag.component.html
+++ b/src/app/features/tag/tag/tag.component.html
@@ -1,8 +1,10 @@
-{{ tag().icon }}
+@if (!isInboxTag()) {
+ {{ tag().icon }}
+
+}
@if (!isHideTitle()) {
{{ tag().title }}
}
diff --git a/src/app/features/tag/tag/tag.component.scss b/src/app/features/tag/tag/tag.component.scss
index 7514611ca9..52ef69db12 100644
--- a/src/app/features/tag/tag/tag.component.scss
+++ b/src/app/features/tag/tag/tag.component.scss
@@ -30,7 +30,7 @@ $pad: ($ico-size - $line-height + $ico-pad * 2) * 0.5;
.tag-title {
display: block;
font-size: 12px;
- line-height: $line-height;
+ line-height: 1;
padding: $pad 0;
@include darkTheme() {
diff --git a/src/app/features/tag/tag/tag.component.ts b/src/app/features/tag/tag/tag.component.ts
index ca683d1886..91cf62c680 100644
--- a/src/app/features/tag/tag/tag.component.ts
+++ b/src/app/features/tag/tag/tag.component.ts
@@ -6,6 +6,7 @@ import {
Signal,
} from '@angular/core';
import { MatIcon } from '@angular/material/icon';
+import { INBOX_TAG } from '../tag.const';
export interface TagComponentTag {
title: string;
@@ -28,6 +29,7 @@ export interface TagComponentTag {
export class TagComponent {
tag = input.required();
isHideTitle = input(false);
+ isInboxTag = computed(() => (this.tag() as any).id === INBOX_TAG.id);
// @HostBinding('style.background')
color: Signal = computed(() => {