Files
twenty/packages/twenty-front/src/modules/action-menu/utils/getActionBarIdFromActionMenuId.ts
T
Raphaël Bosi a6007d4376 Fix action menu dropdown (#8368)
Fix action menu dropdown not closing when clicking outside the table or
board and introduce helper functions to get the action menu component
ids.
2024-11-06 16:11:31 +01:00

4 lines
116 B
TypeScript

export const getActionBarIdFromActionMenuId = (actionMenuId: string) => {
return `action-bar-${actionMenuId}`;
};