Skip to content

Commit 76eeb21

Browse files
could it be the month formatting?
1 parent dc77d56 commit 76eeb21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Publications/Entry/Periodical.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const Periodical = ({ entry }) => {
1515
const volume = entry.volume ? `vol. ${entry.volume}, ` : ''
1616
const number = entry.number ? `no. ${entry.number}, ` : ''
1717
const pages = entry.pages ? `pp. ${entry.pages}, ` : ''
18-
const month = entry.month ? `${asMonth(entry.month)} ` : ''
18+
const month = entry.month ? '' : '' //`${asMonth(entry.month)} ` : ''
1919
const year = entry.year ? entry.year : ''
2020
const stop = entry.journal || entry.volume || entry.number || entry.pages || entry.month || entry.year ? '.' : ''
2121
return (

0 commit comments

Comments
 (0)