@@ -20,7 +20,7 @@ License along with SensiML Piccolo AI. If not, see <https://www.gnu.org/licenses
20
20
import React , { useState , useEffect } from "react" ;
21
21
import { useTranslation } from "react-i18next" ;
22
22
23
- import { generatePath , useHistory , Link } from "react-router-dom" ;
23
+ import { generatePath , useHistory } from "react-router-dom" ;
24
24
25
25
import { Tooltip } from "@mui/material" ;
26
26
import IconButton from "@mui/material/IconButton" ;
@@ -30,7 +30,7 @@ import { ROUTES } from "routers";
30
30
31
31
import StandardTable from "components/StandardTable" ;
32
32
33
- const TableAutoSenseMetrics = ( { autosenseMetrics, projectUUID, pipelineUUID } ) => {
33
+ const TableAutoSenseMetrics = ( { autosenseMetrics, projectUUID, pipelineUUID, onClearModel } ) => {
34
34
const routersHistory = useHistory ( ) ;
35
35
const { t } = useTranslation ( "models" ) ;
36
36
@@ -56,18 +56,26 @@ const TableAutoSenseMetrics = ({ autosenseMetrics, projectUUID, pipelineUUID })
56
56
return ! data ? "" : isNaN ( data ) ? data . toUpperCase ( ) : Number ( data ) . toFixed ( 0 ) ;
57
57
} ;
58
58
59
+ const handleOpenModel = ( modelUUID ) => {
60
+ onClearModel ( ) ;
61
+ routersHistory . push ( getModelPagePath ( modelUUID ) ) ;
62
+ } ;
63
+
59
64
const handleDoubleClick = ( event , row ) => {
60
- routersHistory . push ( getModelPagePath ( row . knowledgepack ) ) ;
65
+ handleOpenModel ( row . knowledgepack ) ;
61
66
} ;
62
67
63
68
const openModelRender = ( modelUUID ) => {
64
69
return (
65
70
< Tooltip title = "Explore Model.." >
66
- < Link to = { getModelPagePath ( modelUUID ) } >
67
- < IconButton variant = "contained" color = "primary" size = "small" >
68
- < ExploreIcon />
69
- </ IconButton >
70
- </ Link >
71
+ < IconButton
72
+ variant = "contained"
73
+ color = "primary"
74
+ size = "small"
75
+ onClick = { ( ) => handleOpenModel ( modelUUID ) }
76
+ >
77
+ < ExploreIcon />
78
+ </ IconButton >
71
79
</ Tooltip >
72
80
) ;
73
81
} ;
0 commit comments