Feat/generic editable cell chip (#982)
* Added generic relation cell * Deactivated debug * Added default warning * Put back display component * Removed unused types * wip * Renamed to view field * Use new view field structure to have chip working * Finished * Added a temp feature flag
This commit is contained in:
8
front/src/modules/ui/table/states/viewFieldsState.ts
Normal file
8
front/src/modules/ui/table/states/viewFieldsState.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import { atom } from 'recoil';
|
||||
|
||||
import { ViewFieldDefinition } from '../types/ViewField';
|
||||
|
||||
export const viewFieldsState = atom<ViewFieldDefinition<unknown>[]>({
|
||||
key: 'viewFieldsState',
|
||||
default: [],
|
||||
});
|
||||
Reference in New Issue
Block a user