[arvados] updated: 2.7.0-6572-gf71ef070ef
git repository hosting
git at public.arvados.org
Wed Apr 24 16:17:57 UTC 2024
Summary of changes:
services/workbench2/cypress/e2e/page-not-found.cy.js | 2 +-
.../src/views-components/multiselect-toolbar/ms-project-action-set.ts | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
via f71ef070efb44543c313e433b049875cde445062 (commit)
from 0e74a170097e29c5d6aee582de027aa5cd290014 (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 f71ef070efb44543c313e433b049875cde445062
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Wed Apr 24 12:17:52 2024 -0400
21224: fixed page-not-found test Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>
diff --git a/services/workbench2/cypress/e2e/page-not-found.cy.js b/services/workbench2/cypress/e2e/page-not-found.cy.js
index 7cffd1079b..da36692743 100644
--- a/services/workbench2/cypress/e2e/page-not-found.cy.js
+++ b/services/workbench2/cypress/e2e/page-not-found.cy.js
@@ -24,7 +24,7 @@ describe('Page not found tests', function() {
});
- it('shows not found popup', function() {
+ it.only('shows not found popup', function() {
// given
[
'/projects/zzzzz-j7d0g-nonexistingproj',
diff --git a/services/workbench2/src/views-components/multiselect-toolbar/ms-project-action-set.ts b/services/workbench2/src/views-components/multiselect-toolbar/ms-project-action-set.ts
index 0723eaa497..a9ad26848d 100644
--- a/services/workbench2/src/views-components/multiselect-toolbar/ms-project-action-set.ts
+++ b/services/workbench2/src/views-components/multiselect-toolbar/ms-project-action-set.ts
@@ -87,7 +87,7 @@ export const msToggleTrashAction: MultiSelectMenuAction = {
altIcon: RestoreFromTrashIcon,
isForMulti: true,
useAlts: (uuid, iconProps) => {
- return uuid ? (getResource(uuid)(iconProps.resources) as any).isTrashed : false;
+ return uuid ? (getResource(uuid)(iconProps.resources) as any)?.isTrashed : false;
},
execute: (dispatch, resources) => {
for (const resource of [...resources]) {
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list