[ARVADOS-WORKBENCH2] updated: 1.4.1-463-g2e33e6cf
Git user
git at public.arvados.org
Mon Oct 12 15:56:00 UTC 2020
Summary of changes:
.../context-menu/action-sets/collection-files-action-set.ts | 2 +-
.../action-sets/collection-files-item-action-set.ts | 10 +++++-----
2 files changed, 6 insertions(+), 6 deletions(-)
via 2e33e6cf5b5beb180bcbad716be11881a1882079 (commit)
from efded4f675bf0cabb81e91d19ccb294a4df4deba (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 2e33e6cf5b5beb180bcbad716be11881a1882079
Author: Daniel Kutyła <daniel.kutyla at contractors.roche.com>
Date: Mon Oct 12 17:54:17 2020 +0200
16037: Added proper comments and enabled missing feature
Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła <daniel.kutyla at contractors.roche.com>
diff --git a/src/views-components/context-menu/action-sets/collection-files-action-set.ts b/src/views-components/context-menu/action-sets/collection-files-action-set.ts
index 818126cf..7e885615 100644
--- a/src/views-components/context-menu/action-sets/collection-files-action-set.ts
+++ b/src/views-components/context-menu/action-sets/collection-files-action-set.ts
@@ -20,7 +20,7 @@ export const readOnlyCollectionFilesActionSet: ContextMenuActionSet = [[
dispatch(collectionPanelFilesAction.UNSELECT_ALL_COLLECTION_FILES());
}
},
- // {
+ // { // Disabled for now as we need to create backend version of this feature which will be less buggy
// component: DownloadCollectionFileAction,
// execute: () => { return; }
// },
diff --git a/src/views-components/context-menu/action-sets/collection-files-item-action-set.ts b/src/views-components/context-menu/action-sets/collection-files-item-action-set.ts
index 97a0a9f1..b900d186 100644
--- a/src/views-components/context-menu/action-sets/collection-files-item-action-set.ts
+++ b/src/views-components/context-menu/action-sets/collection-files-item-action-set.ts
@@ -4,16 +4,16 @@
import { ContextMenuActionSet } from "../context-menu-action-set";
import { RemoveIcon, RenameIcon } from "~/components/icon/icon";
-// import { DownloadCollectionFileAction } from "../actions/download-collection-file-action";
+import { DownloadCollectionFileAction } from "../actions/download-collection-file-action";
import { openFileRemoveDialog, openRenameFileDialog } from '~/store/collection-panel/collection-panel-files/collection-panel-files-actions';
import { CollectionFileViewerAction } from '~/views-components/context-menu/actions/collection-file-viewer-action';
export const readOnlyCollectionFilesItemActionSet: ContextMenuActionSet = [[
- // {
- // component: DownloadCollectionFileAction,
- // execute: () => { return; }
- // },
+ {
+ component: DownloadCollectionFileAction,
+ execute: () => { return; }
+ },
{
component: CollectionFileViewerAction,
execute: () => { return; },
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list