16672: Implements 'auto-follow' mode when log view is scrolled all the way down
[arvados-workbench2.git] / src / views / keep-service-panel / keep-service-panel.tsx
index 2c6323b079b90e10efbf15c6974ecfce299fab42..29ae9075e4f51cbc0f897f78cf4f62ca40962242 100644 (file)
@@ -2,16 +2,15 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import { RootState } from '~/store/store';
+import { RootState } from 'store/store';
 import { Dispatch } from 'redux';
 import { connect } from 'react-redux';
-import { } from '~/store/keep-services/keep-services-actions';
 import { 
     KeepServicePanelRoot, 
     KeepServicePanelRootDataProps, 
     KeepServicePanelRootActionProps 
-} from '~/views/keep-service-panel/keep-service-panel-root';
-import { openKeepServiceContextMenu } from '~/store/context-menu/context-menu-actions';
+} from 'views/keep-service-panel/keep-service-panel-root';
+import { openKeepServiceContextMenu } from 'store/context-menu/context-menu-actions';
 
 const mapStateToProps = (state: RootState): KeepServicePanelRootDataProps => {
     return {
@@ -21,8 +20,8 @@ const mapStateToProps = (state: RootState): KeepServicePanelRootDataProps => {
 };
 
 const mapDispatchToProps = (dispatch: Dispatch): KeepServicePanelRootActionProps => ({
-    openRowOptions: (event, index, keepService) => {
-        dispatch<any>(openKeepServiceContextMenu(event, index, keepService));
+    openRowOptions: (event, keepService) => {
+        dispatch<any>(openKeepServiceContextMenu(event, keepService));
     }
 });