Skip to content

Commit

Permalink
Shorten publication type label, don't link (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
fsteeg committed Jul 15, 2021
1 parent c7eeee8 commit 46f9325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gatsby/lobid/src/components/publications.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default class Publications extends React.Component {
<td>{publication.about && publication.about.map(a =>
<p key={a.id}><small><span className="glyphicon glyphicon-tag" aria-hidden="true"></span></small>&nbsp;<a href={stripLobidOrg(a.id)}>{simpleId(a.id)}</a></p>
)}</td>
<td align="right"><small><a href={"https://schema.org/" + publication.type}>{publication.type}</a></small></td>
<td align="right"><small>{publication.type.match(/[A-Z][a-z]+/)[0]}</small></td>
<td><a title="Beschreibung als JSON-LD anzeigen" href={publication.fields.jsonFile}><img height="20px" src={jsonLdPng} alt="JSON-LD" /></a></td>
</tr>
)}
Expand Down

0 comments on commit 46f9325

Please sign in to comment.