next conflicts
[arvados-workbench2.git] / src / store / data-explorer / data-explorer-middleware.ts
index 71825e8fe98199d768547ed0ef911684bf1ccafb..f90f9a6ce39d1ceddff638959544d1ec24c1d06c 100644 (file)
@@ -3,13 +3,12 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import { Middleware } from "../../../node_modules/redux";
+import { Middleware } from "redux";
 import { dataExplorerActions, bindDataExplorerActions } from "./data-explorer-action";
 import { DataExplorerMiddlewareService } from "./data-explorer-middleware-service";
 
 export const dataExplorerMiddleware = (service: DataExplorerMiddlewareService): Middleware => api => next => {
     const actions = bindDataExplorerActions(service.getId());
-    next(actions.SET_COLUMNS({ columns: service.getColumns() }));
 
     return action => {
         const handleAction = <T extends { id: string }>(handler: (data: T) => void) =>
@@ -33,7 +32,7 @@ export const dataExplorerMiddleware = (service: DataExplorerMiddlewareService):
             TOGGLE_SORT: handleAction(() => {
                 api.dispatch(actions.REQUEST_ITEMS());
             }),
-            SET_SEARCH_VALUE: handleAction(() => {
+            SET_EXPLORER_SEARCH_VALUE: handleAction(() => {
                 api.dispatch(actions.RESET_PAGINATION());
                 api.dispatch(actions.REQUEST_ITEMS());
             }),