We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9308879 commit 412b648Copy full SHA for 412b648
1 file changed
client/packages/lowcoder/src/pages/common/headerStartDropdown.tsx
@@ -167,7 +167,9 @@ export function HeaderStartDropdown(props: { setEdit: () => void, isViewMarketpl
167
});
168
}
169
}}
170
- items={menuItems.filter(item => item.visible)}
+ items={menuItems
171
+ .filter((item) => item.visible)
172
+ .map(({ visible, ...rest }) => rest)}
173
/>
174
)}
175
>
0 commit comments