diff --git a/src/components/profile-data-table.tsx b/src/components/profile-data-table.tsx
index 9a2ebf8..8ddfd47 100644
--- a/src/components/profile-data-table.tsx
+++ b/src/components/profile-data-table.tsx
@@ -220,33 +220,56 @@ const TagsCell = React.memo<{
if (openTagsEditorFor !== profile.name) {
const hiddenCount = Math.max(0, effectiveTags.length - visibleCount);
+ const ButtonContent = (
+
+ );
+
return (
-
+ {hiddenCount > 0 ? (
+
+ {ButtonContent}
+
+
+ {effectiveTags.map((t) => (
+
+ {t}
+
+ ))}
+
+
+
+ ) : (
+ ButtonContent
+ )}
);
}