fix: init cluster id when deploy model

This commit is contained in:
jialin
2025-12-03 19:18:07 +08:00
parent d8f1e95e1a
commit 7355be9e3a
9 changed files with 38 additions and 28 deletions
+13
View File
@@ -154,6 +154,18 @@ const BackendList = () => {
}
};
const handleAddVersion = () => {
setOpenVersionInfoModal({
open: false,
currentData: undefined
});
setOpenModalStatus({
open: true,
action: 'edit',
currentData: openVersionInfoModal.currentData
});
};
const loadMore = useMemoizedFn((nextPage: number) => {
fetchData({
query: {
@@ -226,6 +238,7 @@ const BackendList = () => {
}
></AddModal>
<VersionInfoModal
addVersion={handleAddVersion}
open={openVersionInfoModal.open}
currentData={openVersionInfoModal.currentData as ListItem}
onClose={() =>