Skip to content

Commit ab83e3f

Browse files
committed
AffiliationsSuggestions: fix id strings
Add a space in between multiple id strings and <span>s around id scheme and identifier so they can be styled separately. See #306
1 parent b0fb8f3 commit ab83e3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/elements/contrib/invenioRDM/records/AffiliationsSuggestions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const makeIdEntry = (identifier) => {
3030
default:
3131
return (
3232
<>
33-
{identifier.scheme}: {identifier.identifier}
33+
<span className="name-identifier-scheme">{identifier.scheme}:</span> <span className="name-identifier">{identifier.identifier} </span>
3434
</>
3535
);
3636
}

0 commit comments

Comments
 (0)