X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/16b7bebe83b28b5622f23385df5cacbd66bc425b..a884c545e3edad2cc2ac1210fc3148f922c155dc:/src/components/api-token/api-token.tsx?ds=sidebyside diff --git a/src/components/api-token/api-token.tsx b/src/components/api-token/api-token.tsx index daebe9b93c..7656bf8733 100644 --- a/src/components/api-token/api-token.tsx +++ b/src/components/api-token/api-token.tsx @@ -5,7 +5,8 @@ import { Redirect, RouteProps } from "react-router"; import * as React from "react"; import { connect, DispatchProp } from "react-redux"; -import authActions, { getUserDetails } from "../../store/auth/auth-action"; +import authActions from "../../store/auth/auth-action"; +import { authService, projectService } from "../../services/services"; interface ApiTokenProps { } @@ -16,16 +17,19 @@ class ApiToken extends React.Component(authService.getUserDetails()).then(() => { + const rootUuid = authService.getRootUuid(); + this.props.dispatch(projectService.getProjectList(rootUuid)); + }); } render() { - return + return ; } }