Skip to content

Commit 2dbbc66

Browse files
authored
Fix #5975 (#8335)
* Fix #5975 * Since version 10.3.0, a condition has been added to prevent submenus from activating on hover when in “popup” mode (commit 5615c89). I don't really understand why this constraint exists. But removing it resolves issue #5975 and aligns with PrimeVue's behaviour. * little format fix in Slider.js * Revert format fix in Slider.js revert from commit b435248 I ran the command "npm run format", but my version of Prettier was not up to date, my bad.
1 parent 0d59330 commit 2dbbc66

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/lib/tieredmenu/TieredMenu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ export const TieredMenu = React.memo(
258258
return;
259259
}
260260

261-
if (dirty && !props.popup) {
261+
if (dirty) {
262262
onItemChange(event);
263263
}
264264
};

0 commit comments

Comments
 (0)