Skip to content

Commit 4023ec5

Browse files
committed
bugfix: citations label and number ordering
1 parent a086139 commit 4023ec5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vis/js/templates/listentry/Citations.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const Citations = ({ number, label }: CitationsProps) => {
99
return (
1010
// html template starts here
1111
<div className="list_readers">
12-
<span className="list_readers_entity">{label}</span> <span>{number}</span>
12+
<span>{number}</span> <span className="list_readers_entity">{label}</span>
1313
</div>
1414
// html template ends here
1515
);

0 commit comments

Comments
 (0)