We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f406084 + 69767ed commit 09f72afCopy full SHA for 09f72af
src/client/entity-editor/identifier-editor/identifier-row.tsx
@@ -36,6 +36,7 @@ import ValueField from './value-field';
36
import {collapseWhiteSpaces} from '../../../common/helpers/utils';
37
import {connect} from 'react-redux';
38
import {faTimes} from '@fortawesome/free-solid-svg-icons';
39
+import IdentifierLink from "../../components/pages/entities/identifiers-links.js"
40
41
42
type OwnProps = {
@@ -128,6 +129,14 @@ function IdentifierRow({
128
129
</Button>
130
</Col>
131
</Row>
132
+ {typeValue && valueValue && (
133
+ <Row>
134
+ <Col>
135
+ Preview Link:
136
+ <IdentifierLink typeId={typeValue} value={valueValue}/>
137
+ </Col>
138
+ </Row>
139
+ )}
140
<hr/>
141
</div>
142
);
0 commit comments