File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/frontend_react/src/components/content Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import PanelFooter from "@/coral/components/Panels/PanelFooter";
2626import PanelUserCard from "../../coral/components/Panels/UserCard" ;
2727import { getUserInfoGlobal } from "@/api/config" ;
2828
29- const PlanPanelLeft : React . FC < PlanPanelLefProps > = ( { onNewTaskButton } ) => {
29+ const PlanPanelLeft : React . FC < PlanPanelLefProps > = ( { reloadTasks , onNewTaskButton } ) => {
3030 const { dispatchToast } = useToastController ( "toast" ) ;
3131 const navigate = useNavigate ( ) ;
3232 const { planId } = useParams < { planId : string } > ( ) ;
Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ const TaskDetails: React.FC<TaskDetailsProps> = ({
202202 < div className = "task-details-agents-list" >
203203 { agents . map ( ( agent ) => (
204204 < div key = { agent } className = "task-details-agent-card" >
205- < Avatar name = { agent } size = { 32 } badge = { { status : "available" } } />
205+ < Avatar name = { agent } size = { 32 } />
206206 < div className = "task-details-agent-details" >
207207 < span className = "task-details-agent-name" >
208208 { TaskService . cleanTextToSpaces ( agent ) }
You can’t perform that action at this time.
0 commit comments