File tree Expand file tree Collapse file tree 2 files changed +27
-3
lines changed
llmstack/client/src/pages Expand file tree Collapse file tree 2 files changed +27
-3
lines changed Original file line number Diff line number Diff line change @@ -259,9 +259,15 @@ export default function DataPage() {
259259 return (
260260 < Typography sx = { { display : "flex" } } >
261261 { row . expand ? (
262- < KeyboardArrowDownOutlined />
262+ < KeyboardArrowDownOutlined
263+ fontSize = "10px"
264+ sx = { { color : "#999" , margin : "auto 0" } }
265+ />
263266 ) : (
264- < KeyboardArrowRightOutlined />
267+ < KeyboardArrowRightOutlined
268+ fontSize = "10px"
269+ sx = { { color : "#999" , margin : "auto 0" } }
270+ />
265271 ) }
266272 { record }
267273 </ Typography >
Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ import { axios } from "../data/axios";
2424import { useRecoilValue } from "recoil" ;
2525import { appsBriefState } from "../data/atoms" ;
2626import AddAppRunScheduleModal from "../components/schedule/AddAppRunScheduleModal" ;
27+ import {
28+ KeyboardArrowDownOutlined ,
29+ KeyboardArrowRightOutlined ,
30+ } from "@mui/icons-material" ;
2731import AddOutlinedIcon from "@mui/icons-material/AddOutlined" ;
2832import DeleteOutlineOutlinedIcon from "@mui/icons-material/DeleteOutlineOutlined" ;
2933import DownloadOutlinedIcon from "@mui/icons-material/DownloadOutlined" ;
@@ -485,7 +489,21 @@ export default function Schedule() {
485489 column . key === "name" ? "left" : "center" ,
486490 } }
487491 >
488- { column . render ? column . render ( value , row ) : value }
492+ < >
493+ { column . key === "name" &&
494+ ( row . expand ? (
495+ < KeyboardArrowDownOutlined
496+ fontSize = "10px"
497+ sx = { { color : "#999" , margin : "auto 0" } }
498+ />
499+ ) : (
500+ < KeyboardArrowRightOutlined
501+ fontSize = "10px"
502+ sx = { { color : "#999" , margin : "auto 0" } }
503+ />
504+ ) ) }
505+ { column . render ? column . render ( value , row ) : value }
506+ </ >
489507 </ TableCell >
490508 ) ;
491509 } ) }
You can’t perform that action at this time.
0 commit comments