Fix release notes bug

This commit is contained in:
Fabio Berger
2018-04-02 18:08:55 +09:00
parent afe07b2926
commit bc49dde4d5

View File

@@ -119,7 +119,7 @@ export const postpublishUtils = {
if (_.isUndefined(latestLog.isPublished)) {
let notes = '';
_.each(latestLog.changes, change => {
notes = `* ${change.note}`;
notes += `* ${change.note}`;
if (change.pr) {
notes += ` (${change.pr})`;
}