-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DCJ-367: Link to data library instead of old catalog #2615
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,7 +82,7 @@ export const headerTabsConfig = [ | |
link: '/admin_manage_dar_collections', | ||
children: [ | ||
{ label: 'DAR Requests', link: '/admin_manage_dar_collections' }, | ||
{ label: 'Dataset Catalog', link: '/dataset_catalog' }, | ||
{ label: 'Data Library', link: '/datalibrary', search: 'datalibrary' }, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What does this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
{ label: 'DACs', link: '/manage_dac' }, | ||
{ label: 'Users', link: '/admin_manage_users' }, | ||
{ label: 'Institutions', link: '/admin_manage_institutions' }, | ||
|
@@ -119,16 +119,15 @@ export const headerTabsConfig = [ | |
search: 'member_console', | ||
children: [ | ||
{ label: 'DAR Requests', link: '/member_console' }, | ||
{ label: 'Datasets', link: '/dataset_catalog' }, | ||
{ label: 'Data Library', link: '/datalibrary', search: 'datalibrary' } | ||
], | ||
isRendered: (user) => user.isMember | ||
}, | ||
{ | ||
label: 'Researcher Console', | ||
link: '/dataset_catalog', | ||
search: 'dataset_catalog', | ||
link: '/datalibrary', | ||
search: 'datalibrary', | ||
children: [ | ||
{ label: 'Data Catalog', link: '/dataset_catalog' }, | ||
{ label: 'Data Library', link: '/datalibrary', search: 'datalibrary' }, | ||
{ label: 'DAR Requests', link: '/researcher_console' }, | ||
{ label: 'Data Submissions', link: '/dataset_submissions', isRenderedForUser: (user) => user?.isDataSubmitter } | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this a place that also needs to be updated?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the
custom dataset catalog functionality
in the PR description that I did not want to remove yet. Jonathan has shared out links to this so we need to figure out what to do with it.