Skip to content

Commit

Permalink
Add Queue View link
Browse files Browse the repository at this point in the history
  • Loading branch information
tmorrell committed Nov 22, 2023
1 parent 4b437ed commit 690f1bd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion assets/js/invenio_app_rdm/overridableRegistry/mapping.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
// under the terms of the MIT License; see LICENSE file for more details.

import React, { Component } from "react";
import { List } from "semantic-ui-react";
import PropTypes from "prop-types";

import { FieldLabel, TextField } from "react-invenio-forms";
Expand Down Expand Up @@ -40,4 +41,11 @@ PublisherField.defaultProps = {
placeholder: i18next.t("Publisher"),
};

export const overriddenComponents = {"InvenioAppRdm.Deposit.PublisherField.container":PublisherField,};
const SearchHelpLinks = () => {
return (
<List> <List.Item> <a href="https://caltechlibrary.github.io/irdm-queue-portal/">{i18next.t("Queue View")}</a> </List.Item> </List>
)
}


export const overriddenComponents = {"InvenioAppRdm.Deposit.PublisherField.container":PublisherField,"InvenioCommunities.RequestSearch.SearchHelpLinks":SearchHelpLinks };

0 comments on commit 690f1bd

Please sign in to comment.