From 124e7b15e234f1603e026b620fe4dfb3cea0aff1 Mon Sep 17 00:00:00 2001 From: cahrens Date: Thu, 1 Feb 2024 14:23:16 -0500 Subject: [PATCH] Move library-attributes because it is only used by Dashboard. --- src/workspaces/dashboard/DatasetAttributes.ts | 2 +- .../workspace => workspaces/dashboard}/library-attributes.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{pages/workspaces/workspace => workspaces/dashboard}/library-attributes.ts (100%) diff --git a/src/workspaces/dashboard/DatasetAttributes.ts b/src/workspaces/dashboard/DatasetAttributes.ts index 4efafd2a9c5..854cac8f29c 100644 --- a/src/workspaces/dashboard/DatasetAttributes.ts +++ b/src/workspaces/dashboard/DatasetAttributes.ts @@ -7,7 +7,7 @@ import { SimpleTable } from 'src/components/table'; import * as Style from 'src/libs/style'; import { append } from 'src/libs/utils'; import { WorkspaceInfo } from 'src/libs/workspace-utils'; -import { displayConsentCodes, displayLibraryAttributes } from 'src/pages/workspaces/workspace/library-attributes'; +import { displayConsentCodes, displayLibraryAttributes } from 'src/workspaces/dashboard/library-attributes'; interface DatasetAttributesProps { attributes: WorkspaceInfo['attributes']; diff --git a/src/pages/workspaces/workspace/library-attributes.ts b/src/workspaces/dashboard/library-attributes.ts similarity index 100% rename from src/pages/workspaces/workspace/library-attributes.ts rename to src/workspaces/dashboard/library-attributes.ts