diff --git a/frontend/src/Editor/Inspector/EventManager.jsx b/frontend/src/Editor/Inspector/EventManager.jsx index ca6ef895c4..1c2dbb08ca 100644 --- a/frontend/src/Editor/Inspector/EventManager.jsx +++ b/frontend/src/Editor/Inspector/EventManager.jsx @@ -21,6 +21,9 @@ import RunjsParameters from './ActionConfigurationPanels/RunjsParamters'; import { useAppDataActions, useAppInfo } from '@/_stores/appDataStore'; import { isQueryRunnable } from '@/_helpers/utils'; import { shallow } from 'zustand/shallow'; +import AddNewButton from '@/ToolJetUI/Buttons/AddNewButton/AddNewButton'; +import NoListItem from './Components/Table/NoListItem'; +import ManageEventButton from './ManageEventButton'; // eslint-disable-next-line import/no-unresolved export const EventManager = ({ @@ -818,7 +821,7 @@ export const EventManager = ({ ); } - //!Need to fix + const reorderEvents = (startIndex, endIndex) => { const result = _.cloneDeep(events); const [removed] = result.splice(startIndex, 1); @@ -889,92 +892,14 @@ export const EventManager = ({ if (typeof popOverCallback === 'function') popOverCallback(showing); }} > -