Commit 43dc75a9 authored by wenmo's avatar wenmo

[Fix-494] [web] Fix the savepoint information does not change with the task information

parent f7f7810f
......@@ -11,11 +11,15 @@ import {connect} from "umi";
import { Scrollbars } from 'react-custom-scrollbars';
const url = '/api/savepoints';
const StudioSavePoint: React.FC<{}> = (props: any) => {
const StudioSavePoint = (props: any) => {
const {current,toolHeight,dispatch} = props;
const [row, setRow] = useState<SavePointTableListItem>();
const actionRef = useRef<ActionType>();
if(current.key){
actionRef.current?.reloadAndRest?.();
}
const columns: ProColumns<SavePointTableListItem>[] = [
{
title: '名称',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment