Skip to content

Commit c74580f

Browse files
authored
fix: remove incorrect visibility for sub-menu indicator (#10506)
1 parent 05a86e6 commit c74580f

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

packages/context-menu/src/styles/vaadin-context-menu-item-base-styles.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ const menuItemStyles = css`
1515
height: var(--vaadin-icon-size, 1lh);
1616
mask: var(--_vaadin-icon-chevron-down) 50% / var(--vaadin-icon-visual-size, 100%) no-repeat;
1717
rotate: -90deg;
18-
visibility: hidden;
1918
width: var(--vaadin-icon-size, 1lh);
2019
}
2120

packages/menu-bar/test/visual/base/menu-bar.test.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,13 @@ describe('menu-bar', () => {
2929
{ text: 'Home' },
3030
{
3131
text: 'Reports',
32-
children: [{ text: 'View Reports' }, { text: 'Generate Report' }],
32+
children: [
33+
{ text: 'View Reports' },
34+
{
35+
text: 'Generate Report',
36+
children: [{ text: 'Monthly' }, { text: 'Yearly' }],
37+
},
38+
],
3339
},
3440
{ text: 'Dashboard', disabled: true },
3541
{ text: 'Help' },
253 Bytes
Loading
199 Bytes
Loading

0 commit comments

Comments
 (0)