Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit e534cbc

Browse files
committed
fix(plugins/plugin-client-common): DropdownWidget does not obey title property
Fixes #6393
1 parent 3f1e72e commit e534cbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/plugin-client-common/src/components/Client/StatusStripe/DropdownWidget.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export type Props = Pick<DropDownProps, 'position'> & {
2727

2828
export default function DropdownWidget(props: Props) {
2929
return (
30-
<div className="kui--status-stripe-element kui--status-stripe-element-clickable" id={props.id}>
30+
<div className="kui--status-stripe-element kui--status-stripe-element-clickable" id={props.id} title={props.title}>
3131
<DropDown isPlain direction="up" toggle="caret" {...props} />
3232
</div>
3333
)

0 commit comments

Comments
 (0)