Add site manager and initial validation
[arvados-workbench2.git] / src / views-components / rename-file-dialog / rename-file-dialog.tsx
index 862227bd888c27c277e4b4d9e28d66a0e36b76f3..1a806511523b6e0bc3fabeb1322a72ba615e3fcf 100644 (file)
@@ -10,6 +10,7 @@ import { FormDialog } from '~/components/form-dialog/form-dialog';
 import { DialogContentText } from '@material-ui/core';
 import { TextField } from '~/components/text-field/text-field';
 import { RENAME_FILE_DIALOG, RenameFileDialogData, renameFile } from '~/store/collection-panel/collection-panel-files/collection-panel-files-actions';
+import { WarningCollection } from '~/components/warning-collection/warning-collection';
 
 export const RenameFileDialog = compose(
     withDialog(RENAME_FILE_DIALOG),
@@ -34,5 +35,7 @@ const RenameDialogFormFields = (props: WithDialogProps<RenameFileDialogData>) =>
     <Field
         name='name'
         component={TextField}
+        autoFocus={true}
     />
+    <WarningCollection text="Renaming a file will change content address." />
 </>;