[ARVADOS-WORKBENCH2] updated: 1.2.0-151-gcdcdc08

Git user git at public.curoverse.com
Mon Aug 27 07:33:47 EDT 2018


Summary of changes:
 src/views-components/dialog-forms/move-collection-dialog.ts           | 4 ++--
 src/views-components/dialog-forms/move-project-dialog.ts              | 4 ++--
 .../dialog-move/{move-to-dialog.tsx => dialog-move-to.tsx}            | 2 +-
 src/views-components/form-fields/project-form-fields.tsx              | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)
 rename src/views-components/dialog-move/{move-to-dialog.tsx => dialog-move-to.tsx} (88%)

       via  cdcdc08b57f7ae779d0b3f043bd255897579498d (commit)
      from  fb6814e06cc846481043152b0d2ba5c88cc61f96 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit cdcdc08b57f7ae779d0b3f043bd255897579498d
Author: Janicki Artur <artur.janicki at contractors.roche.com>
Date:   Mon Aug 27 13:33:40 2018 +0200

    rename file and path for dialog-forms - move-to
    
    Feature #14103
    
    Arvados-DCO-1.1-Signed-off-by: Janicki Artur <artur.janicki at contractors.roche.com>

diff --git a/src/views-components/dialog-forms/move-collection-dialog.ts b/src/views-components/dialog-forms/move-collection-dialog.ts
index 1164027..38d6d03 100644
--- a/src/views-components/dialog-forms/move-collection-dialog.ts
+++ b/src/views-components/dialog-forms/move-collection-dialog.ts
@@ -5,7 +5,7 @@
 import { compose } from "redux";
 import { withDialog } from "~/store/dialog/with-dialog";
 import { reduxForm } from 'redux-form';
-import { MoveToFormDialog } from '~/views-components/dialog-move/move-to-dialog';
+import { DialogMoveTo } from '~/views-components/dialog-move/dialog-move-to';
 import { COLLECTION_MOVE_FORM_NAME, moveCollection } from '~/store/collections/collection-move-actions';
 import { MoveToFormDialogData } from '~/store/move-to-dialog/move-to-dialog';
 
@@ -17,4 +17,4 @@ export const MoveCollectionDialog = compose(
             dispatch(moveCollection(data));
         }
     })
-)(MoveToFormDialog);
+)(DialogMoveTo);
diff --git a/src/views-components/dialog-forms/move-project-dialog.ts b/src/views-components/dialog-forms/move-project-dialog.ts
index 49e8ead..dd102b1 100644
--- a/src/views-components/dialog-forms/move-project-dialog.ts
+++ b/src/views-components/dialog-forms/move-project-dialog.ts
@@ -8,7 +8,7 @@ import { reduxForm } from 'redux-form';
 import { PROJECT_MOVE_FORM_NAME } from '~/store/projects/project-move-actions';
 import { moveProject } from '~/store/projects/project-move-actions';
 import { MoveToFormDialogData } from '~/store/move-to-dialog/move-to-dialog';
-import { MoveToFormDialog } from '~/views-components/dialog-move/move-to-dialog';
+import { DialogMoveTo } from '~/views-components/dialog-move/dialog-move-to';
 
 export const MoveProjectDialog = compose(
     withDialog(PROJECT_MOVE_FORM_NAME),
@@ -18,5 +18,5 @@ export const MoveProjectDialog = compose(
             dispatch(moveProject(data));
         }
     })
-)(MoveToFormDialog);
+)(DialogMoveTo);
 
diff --git a/src/views-components/dialog-move/move-to-dialog.tsx b/src/views-components/dialog-move/dialog-move-to.tsx
similarity index 88%
rename from src/views-components/dialog-move/move-to-dialog.tsx
rename to src/views-components/dialog-move/dialog-move-to.tsx
index d8f89d3..425b9e4 100644
--- a/src/views-components/dialog-move/move-to-dialog.tsx
+++ b/src/views-components/dialog-move/dialog-move-to.tsx
@@ -10,7 +10,7 @@ import { ProjectTreePickerField } from '~/views-components/project-tree-picker/p
 import { MOVE_TO_VALIDATION } from '~/validators/validators';
 import { MoveToFormDialogData } from '~/store/move-to-dialog/move-to-dialog';
 
-export const MoveToFormDialog = (props: WithDialogProps<string> & InjectedFormProps<MoveToFormDialogData>) =>
+export const DialogMoveTo = (props: WithDialogProps<string> & InjectedFormProps<MoveToFormDialogData>) =>
     <FormDialog
         dialogTitle='Move to'
         formFields={MoveToDialogFields}
diff --git a/src/views-components/form-fields/project-form-fields.tsx b/src/views-components/form-fields/project-form-fields.tsx
index 967d3e5..630877e 100644
--- a/src/views-components/form-fields/project-form-fields.tsx
+++ b/src/views-components/form-fields/project-form-fields.tsx
@@ -3,7 +3,7 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import * as React from "react";
-import { Field, WrappedFieldProps } from "redux-form";
+import { Field } from "redux-form";
 import { TextField } from "~/components/text-field/text-field";
 import { PROJECT_NAME_VALIDATION, PROJECT_DESCRIPTION_VALIDATION } from "~/validators/validators";
 

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list