Skip to content

Commit 9bfcbc6

Browse files
Merge pull request #1145 from nicolethoen/resource_dropdown_api_groups
Fix wrapping API groups in Resource Dropdown
2 parents 75466b3 + 88ab69c commit 9bfcbc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/public/components/resource-dropdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const DropdownItem: React.SFC<DropdownItemProps> = ({model, showGroup}) => <Reac
4646
</span>
4747
<span className="co-resource-link__resource-name">
4848
{model.kind}
49-
{showGroup && <React.Fragment>&nbsp;<small className="text-muted">&ndash; {model.apiGroup || 'core'}/{model.apiVersion}</small></React.Fragment>}
49+
{showGroup && <React.Fragment>&nbsp;<div className="text-muted co-truncate show co-nowrap small">{model.apiGroup || 'core'}/{model.apiVersion}</div></React.Fragment>}
5050
</span>
5151
</span>
5252
</React.Fragment>;

0 commit comments

Comments
 (0)