9c8e0f628e
fix:Ability to add a new option for a multi-select on the fly Issues:#13877 --------- Co-authored-by: ehconitin <nitinkoche03@gmail.com> Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
import { createState } from 'twenty-ui/utilities';
|
|
|
|
export const shouldNavigateBackToMemorizedUrlOnSaveState = createState<boolean>(
|
|
{
|
|
key: 'shouldNavigateBackToMemorizedUrlOnSaveState',
|
|
defaultValue: false,
|
|
},
|
|
);
|