File tree 1 file changed +3
-3
lines changed
frontend/src/pages/modelServing/screens/projects/InferenceServiceModal
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ const DataConnectionFolderPathField: React.FC<DataConnectionFolderPathFieldProps
11
11
folderPath,
12
12
setFolderPath,
13
13
} ) => {
14
- type validate = React . ComponentProps < typeof FormGroup > [ 'validated' ] ;
14
+ type Validate = React . ComponentProps < typeof FormGroup > [ 'validated' ] ;
15
15
16
- const [ validated , setValidated ] = React . useState < validate > ( 'default' ) ;
16
+ const [ validated , setValidated ] = React . useState < Validate > ( 'default' ) ;
17
17
18
18
const handlePathChange = ( folderPath : string ) => {
19
19
setFolderPath ( folderPath ) ;
@@ -45,7 +45,7 @@ const DataConnectionFolderPathField: React.FC<DataConnectionFolderPathFieldProps
45
45
aria-label = "folder-path"
46
46
type = "text"
47
47
value = { folderPath }
48
- placeholder = "eg. data "
48
+ placeholder = "Example, data_folder "
49
49
onChange = { handlePathChange }
50
50
/>
51
51
</ InputGroup >
You can’t perform that action at this time.
0 commit comments