Change Owner to Project for Azure host

Signed-off-by: Clemens S. Heithecker <clemens@heithecker.dev>
This commit is contained in:
Clemens S. Heithecker
2022-09-22 10:40:40 +02:00
parent 85771cc543
commit 08c7d2414d
@@ -97,7 +97,7 @@ export const AzureRepoPicker = (props: {
/>
) : (
<>
<InputLabel htmlFor="ownerInput">Owner</InputLabel>
<InputLabel htmlFor="ownerInput">Project</InputLabel>
<Input
id="ownerInput"
onChange={e => onChange({ owner: e.target.value })}
@@ -105,7 +105,9 @@ export const AzureRepoPicker = (props: {
/>
</>
)}
<FormHelperText>The Owner that this repo will belong to</FormHelperText>
<FormHelperText>
The project that this repo will belong to
</FormHelperText>
</FormControl>
</>
);