Skip to content

Commit 48b3e91

Browse files
committed
Deploy model path field enhancements
1 parent 3216f87 commit 48b3e91

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/src/pages/modelServing/screens/projects/InferenceServiceModal/DataConnectionFolderPathField.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ const DataConnectionFolderPathField: React.FC<DataConnectionFolderPathFieldProps
1111
folderPath,
1212
setFolderPath,
1313
}) => {
14-
type validate = React.ComponentProps<typeof FormGroup>['validated'];
14+
type Validate = React.ComponentProps<typeof FormGroup>['validated'];
1515

16-
const [validated, setValidated] = React.useState<validate>('default');
16+
const [validated, setValidated] = React.useState<Validate>('default');
1717

1818
const handlePathChange = (folderPath: string) => {
1919
setFolderPath(folderPath);
@@ -45,7 +45,7 @@ const DataConnectionFolderPathField: React.FC<DataConnectionFolderPathFieldProps
4545
aria-label="folder-path"
4646
type="text"
4747
value={folderPath}
48-
placeholder="eg. data"
48+
placeholder="Example, data_folder"
4949
onChange={handlePathChange}
5050
/>
5151
</InputGroup>

0 commit comments

Comments
 (0)