File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
components/Elements/UserTags Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 396396 border : 1px solid var (--chip-border-color );
397397 background-color : var (--chip-background );
398398 font-size : 0.9em ;
399+
400+ max-width : 80px ;
401+ white-space : nowrap;
402+ overflow : hidden;
403+ text-overflow : ellipsis;
399404}
400405.blockHeaderIcon {
401406 display : flex;
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export const UserTags = () => {
2727 < div className = "tags" >
2828 { userSelectedTags . map ( ( tag , index ) => (
2929 < button key = { index } className = "tag tagHoverable" onClick = { ( ) => onTagClicked ( tag . value ) } >
30- { tag . value }
30+ { tag . label }
3131 </ button >
3232 ) ) }
3333 < Link to = "/settings/topics" className = "tag tagHoverable" aria-label = "Open settings" >
You can’t perform that action at this time.
0 commit comments