Skip to content

Commit d2f8338

Browse files
committed
fix dependency and reformat
Signed-off-by: Victor Zhou <binghua.zhou.ca@gmail.com>
1 parent 40288c9 commit d2f8338

File tree

6 files changed

+2952
-983
lines changed

6 files changed

+2952
-983
lines changed

frontend/src/components/podgroups/PodGroupDialog.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,3 @@ const PodGroupDialog = ({ open, handleClose, selectedName, selectedYaml }) => {
8383
};
8484

8585
export default PodGroupDialog;
86-
87-

frontend/src/components/podgroups/PodGroups.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,4 +224,3 @@ const PodGroups = () => {
224224
};
225225

226226
export default PodGroups;
227-

frontend/src/components/podgroups/PodGroupsTable/PodGroupsTable.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,3 @@ const PodGroupsTable = ({
9696
};
9797

9898
export default PodGroupsTable;
99-
100-

frontend/src/components/podgroups/PodGroupsTable/PodGroupsTableRow.jsx

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,8 @@
11
import React from "react";
2-
import {
3-
TableRow,
4-
TableCell,
5-
Box,
6-
useTheme,
7-
alpha,
8-
} from "@mui/material";
2+
import { TableRow, TableCell, Box, useTheme, alpha } from "@mui/material";
93
import JobStatusChip from "../../jobs/JobStatusChip"; // Reuse chip
104

11-
const PodGroupsTableRow = ({
12-
podGroup,
13-
handlePodGroupClick,
14-
}) => {
5+
const PodGroupsTableRow = ({ podGroup, handlePodGroupClick }) => {
156
const theme = useTheme();
167

178
return (
@@ -122,5 +113,3 @@ const PodGroupsTableRow = ({
122113
};
123114

124115
export default PodGroupsTableRow;
125-
126-

0 commit comments

Comments
 (0)