[arvados-workbench2] updated: 2.7.0-221-gbc46a0bb

git repository hosting git at public.arvados.org
Wed Nov 8 16:06:09 UTC 2023


Summary of changes:
 .../shared-with-me-panel/shared-with-me-panel.tsx  | 40 +++++++++++-----------
 1 file changed, 20 insertions(+), 20 deletions(-)

       via  bc46a0bb4a5e0fe799c39e6570c2b2c186452037 (commit)
      from  0e98b3fc0b3c49e6268905fba19859b05e26fc4f (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 bc46a0bb4a5e0fe799c39e6570c2b2c186452037
Author: Lisa Knox <lisaknox83 at gmail.com>
Date:   Wed Nov 8 11:06:06 2023 -0500

    19302: cleanup Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>

diff --git a/src/views/shared-with-me-panel/shared-with-me-panel.tsx b/src/views/shared-with-me-panel/shared-with-me-panel.tsx
index 7bb171da..929ec6b5 100644
--- a/src/views/shared-with-me-panel/shared-with-me-panel.tsx
+++ b/src/views/shared-with-me-panel/shared-with-me-panel.tsx
@@ -63,7 +63,7 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
     },
 });
 
-export enum ProjectPanelColumnNames {
+export enum SharedWithMePanelColumnNames {
     NAME = 'Name',
     STATUS = 'Status',
     TYPE = 'Type',
@@ -91,7 +91,7 @@ export interface ProjectPanelFilter extends DataTableFilterItem {
 
 export const sharedWithMePanelColumns: DataColumns<string, ProjectResource> = [
     {
-        name: ProjectPanelColumnNames.NAME,
+        name: SharedWithMePanelColumnNames.NAME,
         selected: true,
         configurable: true,
         sort: { direction: SortDirection.NONE, field: 'name' },
@@ -99,7 +99,7 @@ export const sharedWithMePanelColumns: DataColumns<string, ProjectResource> = [
         render: (uuid) => <ResourceName uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.STATUS,
+        name: SharedWithMePanelColumnNames.STATUS,
         selected: true,
         configurable: true,
         mutuallyExclusiveFilters: true,
@@ -107,98 +107,98 @@ export const sharedWithMePanelColumns: DataColumns<string, ProjectResource> = [
         render: (uuid) => <ResourceStatus uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.TYPE,
+        name: SharedWithMePanelColumnNames.TYPE,
         selected: true,
         configurable: true,
         filters: getInitialResourceTypeFilters(),
         render: (uuid) => <ResourceType uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.OWNER,
+        name: SharedWithMePanelColumnNames.OWNER,
         selected: true,
         configurable: true,
         filters: createTree(),
         render: (uuid) => <ResourceOwnerWithName uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.PORTABLE_DATA_HASH,
+        name: SharedWithMePanelColumnNames.PORTABLE_DATA_HASH,
         selected: false,
         configurable: true,
         filters: createTree(),
         render: (uuid) => <ResourcePortableDataHash uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.FILE_SIZE,
+        name: SharedWithMePanelColumnNames.FILE_SIZE,
         selected: true,
         configurable: true,
         filters: createTree(),
         render: (uuid) => <ResourceFileSize uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.FILE_COUNT,
+        name: SharedWithMePanelColumnNames.FILE_COUNT,
         selected: false,
         configurable: true,
         filters: createTree(),
         render: (uuid) => <ResourceFileCount uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.UUID,
+        name: SharedWithMePanelColumnNames.UUID,
         selected: false,
         configurable: true,
         filters: createTree(),
         render: (uuid) => <ResourceUUID uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.CONTAINER_UUID,
+        name: SharedWithMePanelColumnNames.CONTAINER_UUID,
         selected: false,
         configurable: true,
         filters: createTree(),
         render: (uuid) => <ResourceContainerUuid uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.RUNTIME,
+        name: SharedWithMePanelColumnNames.RUNTIME,
         selected: false,
         configurable: true,
         filters: createTree(),
         render: (uuid) => <ContainerRunTime uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.OUTPUT_UUID,
+        name: SharedWithMePanelColumnNames.OUTPUT_UUID,
         selected: false,
         configurable: true,
         filters: createTree(),
         render: (uuid) => <ResourceOutputUuid uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.LOG_UUID,
+        name: SharedWithMePanelColumnNames.LOG_UUID,
         selected: false,
         configurable: true,
         filters: createTree(),
         render: (uuid) => <ResourceLogUuid uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.PARENT_PROCESS,
+        name: SharedWithMePanelColumnNames.PARENT_PROCESS,
         selected: false,
         configurable: true,
         filters: createTree(),
         render: (uuid) => <ResourceParentProcess uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.MODIFIED_BY_USER_UUID,
+        name: SharedWithMePanelColumnNames.MODIFIED_BY_USER_UUID,
         selected: false,
         configurable: true,
         filters: createTree(),
         render: (uuid) => <ResourceModifiedByUserUuid uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.VERSION,
+        name: SharedWithMePanelColumnNames.VERSION,
         selected: false,
         configurable: true,
         filters: createTree(),
         render: (uuid) => <ResourceVersion uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.CREATED_AT,
+        name: SharedWithMePanelColumnNames.CREATED_AT,
         selected: false,
         configurable: true,
         sort: { direction: SortDirection.NONE, field: 'createdAt' },
@@ -206,7 +206,7 @@ export const sharedWithMePanelColumns: DataColumns<string, ProjectResource> = [
         render: (uuid) => <ResourceCreatedAtDate uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.LAST_MODIFIED,
+        name: SharedWithMePanelColumnNames.LAST_MODIFIED,
         selected: true,
         configurable: true,
         sort: { direction: SortDirection.DESC, field: 'modifiedAt' },
@@ -214,7 +214,7 @@ export const sharedWithMePanelColumns: DataColumns<string, ProjectResource> = [
         render: (uuid) => <ResourceLastModifiedDate uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.TRASH_AT,
+        name: SharedWithMePanelColumnNames.TRASH_AT,
         selected: false,
         configurable: true,
         sort: { direction: SortDirection.NONE, field: 'trashAt' },
@@ -222,7 +222,7 @@ export const sharedWithMePanelColumns: DataColumns<string, ProjectResource> = [
         render: (uuid) => <ResourceTrashDate uuid={uuid} />,
     },
     {
-        name: ProjectPanelColumnNames.DELETE_AT,
+        name: SharedWithMePanelColumnNames.DELETE_AT,
         selected: false,
         configurable: true,
         sort: { direction: SortDirection.NONE, field: 'deleteAt' },

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list