Skip to content

Commit 10818c8

Browse files
Merge pull request opendatahub-io#1625 from manaswinidas/deploy-model-path-enhancements
Deploy model Path field enhancements
2 parents 0b041ae + 48b3e91 commit 10818c8

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)