[ARVADOS-WORKBENCH2] updated: 1.3.0-334-g41732be4
Git user
git at public.curoverse.com
Fri Jan 4 05:43:03 EST 2019
Summary of changes:
src/store/auth/auth-action-ssh.ts | 9 ++---
.../collection-panel/collection-panel-action.ts | 4 +--
src/store/collections/collection-move-actions.ts | 4 +--
.../collections/collection-partial-copy-actions.ts | 4 +--
src/store/compute-nodes/compute-nodes-actions.ts | 8 ++---
src/store/details-panel/details-panel-action.ts | 6 ++--
.../favorite-panel-middleware-service.ts | 3 +-
src/store/favorites/favorites-actions.ts | 3 +-
.../group-details-panel-actions.ts | 2 +-
.../group-details-panel-middleware-service.ts | 3 +-
src/store/groups-panel/groups-panel-actions.ts | 2 +-
.../groups-panel-middleware-service.ts | 3 +-
src/store/keep-services/keep-services-actions.ts | 8 ++---
src/store/link-panel/link-panel-actions.ts | 6 ++--
src/store/processes/process-copy-actions.ts | 4 +--
src/store/processes/process-input-actions.ts | 4 +--
src/store/processes/process-move-actions.ts | 6 ++--
src/store/processes/process-update-actions.ts | 6 ++--
src/store/processes/processes-actions.ts | 6 ++--
.../project-panel-middleware-service.ts | 6 ++--
src/store/repositories/repositories-actions.ts | 2 +-
.../shared-with-me-middleware-service.ts | 5 +--
src/store/side-panel/side-panel-action.ts | 3 +-
src/store/trash/trash-actions.ts | 8 ++---
.../virtual-machines/virtual-machines-actions.ts | 4 +--
src/store/workbench/workbench-actions.ts | 40 +++++++++++++---------
.../action-sets/collection-action-set.ts | 14 ++++----
.../action-sets/collection-resource-action-set.ts | 14 ++++----
.../context-menu/action-sets/project-action-set.ts | 12 +++----
src/views-components/data-explorer/renderers.tsx | 2 +-
src/views/collection-panel/collection-panel.tsx | 5 +--
31 files changed, 112 insertions(+), 94 deletions(-)
via 41732be42d860aa191a0670552e142497170aa02 (commit)
via 71b9264c1720e619f8cfcb297a7848ece420c61c (commit)
via fa9b3ce44a3a9315207852d1f182000a6166f9e9 (commit)
from 8df09b8ee52974e5bcd5fea862c3639f54afb54b (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 41732be42d860aa191a0670552e142497170aa02
Merge: 8df09b8e 71b9264c
Author: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
Date: Fri Jan 4 11:42:53 2019 +0100
Merge branch '14604-ui-improvements'
refs #14604
Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
commit 71b9264c1720e619f8cfcb297a7848ece420c61c
Merge: fa9b3ce4 8df09b8e
Author: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
Date: Fri Jan 4 11:42:17 2019 +0100
Merge branch 'master' into 14604-ui-improvements
refs #14604
Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
diff --cc src/views/collection-panel/collection-panel.tsx
index 4124344d,4ec39ca8..3557afe5
--- a/src/views/collection-panel/collection-panel.tsx
+++ b/src/views/collection-panel/collection-panel.tsx
@@@ -169,10 -177,21 +177,22 @@@ export const CollectionPanel = withStyl
onCopy = () => {
this.props.dispatch(snackbarActions.OPEN_SNACKBAR({
message: "Uuid has been copied",
- hideDuration: 2000
+ hideDuration: 2000,
+ kind: SnackbarKind.SUCCESS
}));
}
+
+ openCollectionDetails = () => {
+ const { item } = this.props;
+ if (item) {
+ this.props.dispatch(openDetailsPanel(item.uuid));
+ }
+ }
+
+ titleProps = {
+ onClick: this.openCollectionDetails
+ };
+
}
)
);
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list