We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc77d56 commit 76eeb21Copy full SHA for 76eeb21
src/components/Publications/Entry/Periodical.jsx
@@ -15,7 +15,7 @@ const Periodical = ({ entry }) => {
15
const volume = entry.volume ? `vol. ${entry.volume}, ` : ''
16
const number = entry.number ? `no. ${entry.number}, ` : ''
17
const pages = entry.pages ? `pp. ${entry.pages}, ` : ''
18
- const month = entry.month ? `${asMonth(entry.month)} ` : ''
+ const month = entry.month ? '' : '' //`${asMonth(entry.month)} ` : ''
19
const year = entry.year ? entry.year : ''
20
const stop = entry.journal || entry.volume || entry.number || entry.pages || entry.month || entry.year ? '.' : ''
21
return (
0 commit comments