We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 19c04b3 + 45955da commit d755f4dCopy full SHA for d755f4d
2 files changed
src/assets/App.css
@@ -396,6 +396,11 @@ a {
396
border: 1px solid var(--chip-border-color);
397
background-color: var(--chip-background);
398
font-size: 0.9em;
399
+
400
+ max-width: 80px;
401
+ white-space: nowrap;
402
+ overflow: hidden;
403
+ text-overflow: ellipsis;
404
}
405
.blockHeaderIcon {
406
display: flex;
src/components/Elements/UserTags/UserTags.tsx
@@ -27,7 +27,7 @@ export const UserTags = () => {
27
<div className="tags">
28
{userSelectedTags.map((tag, index) => (
29
<button key={index} className="tag tagHoverable" onClick={() => onTagClicked(tag.value)}>
30
- {tag.value}
+ {tag.label}
31
</button>
32
))}
33
<Link to="/settings/topics" className="tag tagHoverable" aria-label="Open settings">
0 commit comments