Skip to content

Commit

Permalink
Merge branch 'metabrainz:master' into BB-760
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarunmeena0901 authored Mar 27, 2024
2 parents c213b8b + 09f72af commit 2106f90
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/client/entity-editor/identifier-editor/identifier-row.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import ValueField from './value-field';
import {collapseWhiteSpaces} from '../../../common/helpers/utils';
import {connect} from 'react-redux';
import {faTimes} from '@fortawesome/free-solid-svg-icons';
import IdentifierLink from "../../components/pages/entities/identifiers-links.js"


type OwnProps = {
Expand Down Expand Up @@ -128,6 +129,14 @@ function IdentifierRow({
</Button>
</Col>
</Row>
{typeValue && valueValue && (
<Row>
<Col>
Preview Link:
<IdentifierLink typeId={typeValue} value={valueValue}/>
</Col>
</Row>
)}
<hr/>
</div>
);
Expand Down

0 comments on commit 2106f90

Please sign in to comment.