Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
Signed-off-by: gabriel-farache <[email protected]>
  • Loading branch information
gabriel-farache committed Jun 24, 2024
1 parent 5899d3e commit 084aa7e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions plugins/orchestrator-backend/dist-dynamic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
],
"scripts": {},
"dependencies": {
"@janus-idp/backstage-plugin-rbac-common": "^1.6.0",
"@urql/core": "^4.1.4",
"ajv-formats": "^2.1.1",
"cloudevents": "^8.0.0",
Expand All @@ -71,21 +72,21 @@
"@backstage/backend-app-api": "^0.7.5",
"@backstage/backend-common": "^0.22.0",
"@backstage/backend-dynamic-feature-service": "^0.2.10",
"@backstage/errors": "^1.2.4",
"@backstage/backend-plugin-api": "^0.6.18",
"@backstage/backend-tasks": "^0.5.23",
"@backstage/catalog-client": "^1.6.5",
"@backstage/config": "^1.2.0",
"@backstage/core-plugin-api": "^1.9.2",
"@backstage/errors": "^1.2.4",
"@backstage/integration": "^1.11.0",
"@backstage/plugin-auth-node": "^0.4.13",
"@backstage/plugin-catalog-node": "^1.12.0",
"@backstage/plugin-events-backend": "^0.3.5",
"@backstage/plugin-events-node": "^0.3.4",
"@backstage/plugin-scaffolder-backend": "^1.22.8",
"@backstage/plugin-scaffolder-node": "^0.4.4",
"@backstage/plugin-permission-common": "^0.7.13",
"@backstage/plugin-permission-node": "^0.7.29",
"@backstage/plugin-auth-node": "^0.4.13",
"@backstage/plugin-scaffolder-backend": "^1.22.8",
"@backstage/plugin-scaffolder-node": "^0.4.4",
"@backstage/types": "^1.1.1"
},
"overrides": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import {
} from '@backstage/core-plugin-api';
import { usePermission } from '@backstage/plugin-permission-react';

import { Tooltip } from '@mui/material';
import Button from '@mui/material/Button';
import Grid from '@mui/material/Grid';
import Skeleton from '@mui/material/Skeleton';
import Tooltip from '@mui/material/Tooltip';

import { orchestratorWorkflowExecutePermission } from '@janus-idp/backstage-plugin-orchestrator-common';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import {
} from '@backstage/core-plugin-api';
import { usePermission } from '@backstage/plugin-permission-react';

import { Tooltip } from '@mui/material';
import Button from '@mui/material/Button';
import Grid from '@mui/material/Grid';
import Tooltip from '@mui/material/Tooltip';

import {
AssessedProcessInstance,
Expand Down
2 changes: 1 addition & 1 deletion plugins/orchestrator/src/components/WorkflowsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const WorkflowsTable = ({ items }: WorkflowsTableProps) => {
];

return actionItems;
}, [handleExecute, handleView]);
}, [handleExecute, handleView, permittedToExecute]);

const columns = useMemo<TableColumn<FormattedWorkflowOverview>[]>(
() => [
Expand Down

0 comments on commit 084aa7e

Please sign in to comment.