* Removed last old DropdownButton * Update front/src/modules/ui/view-bar/components/SingleEntityFilterDropdownButton.tsx Co-authored-by: Thaïs <guigon.thais@gmail.com> * Fix CI --------- Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com> Co-authored-by: Thaïs <guigon.thais@gmail.com> Co-authored-by: Charles Bochet <charles@twenty.com>
12 lines
301 B
TypeScript
12 lines
301 B
TypeScript
import { atomFamily } from 'recoil';
|
|
|
|
import { HotkeyScope } from '@/ui/utilities/hotkey/types/HotkeyScope';
|
|
|
|
export const dropdownButtonHotkeyScopeScopedFamilyState = atomFamily<
|
|
HotkeyScope | null | undefined,
|
|
string
|
|
>({
|
|
key: 'dropdownButtonHotkeyScopeScopedFamilyState',
|
|
default: null,
|
|
});
|