62 create see deleted records action (#10525)

Closes https://github.com/twentyhq/core-team-issues/issues/62

- Created action
- Removed action from the option menu
- Fixed the filters and sorts providers for the command menu



https://github.com/user-attachments/assets/b42de3ea-536c-458c-a0e7-abd6f929d234
This commit is contained in:
Raphaël Bosi
2025-02-26 18:51:17 +01:00
committed by GitHub
parent 5327febcbe
commit b349d3f8c2
9 changed files with 119 additions and 33 deletions

View File

@ -0,0 +1,6 @@
export const getRecordIndexIdFromObjectNamePluralAndViewId = (
objectNamePlural: string,
viewId: string,
): string => {
return `${objectNamePlural}-${viewId}`;
};