Fixes display of path in UI (#2345)

This commit is contained in:
Alex Collins 2019-09-23 14:57:59 -07:00 committed by GitHub
parent 706b413353
commit 41a440f23d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -153,7 +153,7 @@ export const ApplicationCreatePanel = (props: {
new Array<string>()
}>
{(apps: string[]) => (
<FormField formApi={api} label='Path' field='spec.source.path' component={AutocompleteField} componentProps={{
<FormField formApi={api} label='Git Path/Helm Chart' field='spec.source.path' component={AutocompleteField} componentProps={{
items: apps, filterSuggestions: true,
}}/>
)}