Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/tapis-project/tapis-ui into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Sep 4, 2024
2 parents 593978f + 78ba97c commit 9a8ae0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const FormikTapisFileInput: React.FC<FormikTapisFileInputProps> = ({
const onSelect = useCallback(
(systemId: string | null, files: Array<Files.FileInfo>) => {
if (allowSystemChange) {
setValue(`tapis://${systemId ?? ''}${files[0].path}`);
setValue(`tapis://${systemId ?? ''}/${files[0].path}`);
} else {
setValue(`${files[0].path}`);
}
Expand Down

0 comments on commit 9a8ae0d

Please sign in to comment.