chore: lint

This commit is contained in:
karishmas6
2024-10-19 03:55:36 +05:30
parent 7f1878b583
commit 3b382e5d5e

View File

@@ -16,10 +16,10 @@ interface CollapsibleRowProps {
abortRunHandler: () => void; abortRunHandler: () => void;
runningRecordingName: string; runningRecordingName: string;
} }
export const CollapsibleRow = ({ row, handleDelete, isOpen, currentLog, abortRunHandler,runningRecordingName }: CollapsibleRowProps) => { export const CollapsibleRow = ({ row, handleDelete, isOpen, currentLog, abortRunHandler, runningRecordingName }: CollapsibleRowProps) => {
const [open, setOpen] = useState(isOpen); const [open, setOpen] = useState(isOpen);
const logEndRef = useRef<HTMLDivElement|null>(null); const logEndRef = useRef<HTMLDivElement | null>(null);
const scrollToLogBottom = () => { const scrollToLogBottom = () => {
if (logEndRef.current) { if (logEndRef.current) {
@@ -52,7 +52,7 @@ export const CollapsibleRow = ({ row, handleDelete, isOpen, currentLog, abortRun
</TableCell> </TableCell>
{columns.map((column) => { {columns.map((column) => {
// @ts-ignore // @ts-ignore
const value : any = row[column.id]; const value: any = row[column.id];
if (value !== undefined) { if (value !== undefined) {
return ( return (
<TableCell key={column.id} align={column.align}> <TableCell key={column.id} align={column.align}>
@@ -64,14 +64,14 @@ export const CollapsibleRow = ({ row, handleDelete, isOpen, currentLog, abortRun
case 'delete': case 'delete':
return ( return (
<TableCell key={column.id} align={column.align}> <TableCell key={column.id} align={column.align}>
<IconButton aria-label="add" size= "small" onClick={() => { <IconButton aria-label="add" size="small" onClick={() => {
deleteRunFromStorage(`${row.runId}`).then((result: boolean) => { deleteRunFromStorage(`${row.runId}`).then((result: boolean) => {
if (result) { if (result) {
handleDelete(); handleDelete();
} }
}) })
}}> }}>
<DeleteForever/> <DeleteForever />
</IconButton> </IconButton>
</TableCell> </TableCell>
); );
@@ -85,7 +85,7 @@ export const CollapsibleRow = ({ row, handleDelete, isOpen, currentLog, abortRun
<TableCell style={{ paddingBottom: 0, paddingTop: 0 }} colSpan={6}> <TableCell style={{ paddingBottom: 0, paddingTop: 0 }} colSpan={6}>
<Collapse in={open} timeout="auto" unmountOnExit> <Collapse in={open} timeout="auto" unmountOnExit>
<RunContent row={row} abortRunHandler={handleAbort} currentLog={currentLog} <RunContent row={row} abortRunHandler={handleAbort} currentLog={currentLog}
logEndRef={logEndRef} interpretationInProgress={runningRecordingName === row.name} /> logEndRef={logEndRef} interpretationInProgress={runningRecordingName === row.name} />
</Collapse> </Collapse>
</TableCell> </TableCell>
</TableRow> </TableRow>