CEC-660 Fix release notes field (#113)

This commit is contained in:
John Wu
2021-11-29 17:25:56 -08:00
committed by GitHub
parent 1410878170
commit cb5035cf96
3 changed files with 8 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ export const validateManifest = (data, accessToken) => {
errors.push("description");
}
if (!data.releasenotes || data.releasenotes.length === 0) {
if (!data.release_notes || data.release_notes.length === 0) {
errors.push("release notes");
}