[arvados-workbench2] updated: 2.4.0-215-g601bd654
git repository hosting
git at public.arvados.org
Thu Sep 22 20:41:12 UTC 2022
Summary of changes:
cypress/integration/process.spec.js | 2 +-
.../process-panel/process-output-collection-files.ts | 15 +--------------
2 files changed, 2 insertions(+), 15 deletions(-)
via 601bd6545916618687e968ad2acf93a2d1e0d7d4 (commit)
via 84f690e020f16289207e04fe1cb3e07c31450ce4 (commit)
from ce2ea2b32bdbaa8a9156ca80f8bf2eb33308ba89 (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 601bd6545916618687e968ad2acf93a2d1e0d7d4
Author: Stephen Smith <stephen at curii.com>
Date: Thu Sep 22 16:40:49 2022 -0400
16073: Update test for removal of doc
Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen at curii.com>
diff --git a/cypress/integration/process.spec.js b/cypress/integration/process.spec.js
index b2942e4d..dd7a20be 100644
--- a/cypress/integration/process.spec.js
+++ b/cypress/integration/process.spec.js
@@ -749,7 +749,7 @@ describe('Process tests', function() {
const verifyIOParameter = (name, label, doc, val, collection, multipleRows) => {
cy.get('table tr').contains(name).parents('tr').within(($mainRow) => {
- doc && cy.contains(doc);
+ label && cy.contains(label);
if (multipleRows) {
cy.get($mainRow).nextUntil('[data-cy="process-io-param"]').as('secondaryRows');
commit 84f690e020f16289207e04fe1cb3e07c31450ce4
Author: Stephen Smith <stephen at curii.com>
Date: Thu Sep 22 15:31:33 2022 -0400
16073: Remove unused styles
Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen at curii.com>
diff --git a/src/views/process-panel/process-output-collection-files.ts b/src/views/process-panel/process-output-collection-files.ts
index e09078ae..d0b44cd1 100644
--- a/src/views/process-panel/process-output-collection-files.ts
+++ b/src/views/process-panel/process-output-collection-files.ts
@@ -14,7 +14,6 @@ import { openContextMenu, openCollectionFilesContextMenu } from 'store/context-m
import { openUploadCollectionFilesDialog } from 'store/collections/collection-upload-actions';
import { ResourceKind } from "models/resource";
import { openDetailsPanel } from 'store/details-panel/details-panel-action';
-import { StyleRulesCallback, Theme, withStyles } from "@material-ui/core";
const mapDispatchToProps = (dispatch: Dispatch): Pick<CollectionPanelFilesProps, 'onSearchChange' | 'onFileClick' | 'onUploadDataClick' | 'onCollapseToggle' | 'onSelectionToggle' | 'onItemMenuOpen' | 'onOptionsMenuOpen'> => ({
onUploadDataClick: (targetLocation?: string) => {
@@ -56,16 +55,4 @@ const mapDispatchToProps = (dispatch: Dispatch): Pick<CollectionPanelFilesProps,
},
});
-type CssRules = "wrapper"
- | "dataWrapper"
- | "leftPanel"
- | "rightPanel";
-
-const styles: StyleRulesCallback<CssRules> = (theme: Theme) => ({
- wrapper: {},
- dataWrapper: {},
- leftPanel: {},
- rightPanel: {},
-});
-
-export const ProcessOutputCollectionFiles = withStyles(styles)(connect(null, mapDispatchToProps)(Component));
+export const ProcessOutputCollectionFiles = connect(null, mapDispatchToProps)(Component);
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list