Skip to content

Commit

Permalink
fix(html): update dropdown list classes to match universal v4 rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
joneff committed Dec 29, 2021
1 parent baf18e8 commit 4925ef4
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions packages/html/src/dropdownlist/dropdownlist.jsx
Expand Up @@ -88,17 +88,15 @@ function DropdownListStatic(props) {
'k-widget',
'k-dropdown',
{
'k-state-hover': hover === true,
'k-state-focus': focus === true,
'k-state-invalid': invalid === true,
'k-state-disabled': disabled === true
}
];

let legacyWrapClasses = [
'k-dropdown-wrap',
{
'k-state-hover': hover === true,
'k-state-focused': focus === true,
'k-state-invalid': invalid === true
}
'k-dropdown-wrap'
];

return (
Expand Down

0 comments on commit 4925ef4

Please sign in to comment.