Skip to content

Commit

Permalink
Serialize shortname in EML211
Browse files Browse the repository at this point in the history
Added shortname to the array of basic text elements

Fixes #2536
  • Loading branch information
robyngit committed Dec 17, 2024
1 parent 47bdd09 commit dae8989
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/models/metadata/eml211/EML211.js
Original file line number Diff line number Diff line change
Expand Up @@ -775,8 +775,8 @@ define([

var nodeNameMap = this.nodeNameMap();

//Serialize the basic text fields
var basicText = ["alternateIdentifier", "title"];
// Serialize the basic text fields
const basicText = ["alternateIdentifier", "title", "shortName"];
_.each(
basicText,
function (fieldName) {
Expand Down

0 comments on commit dae8989

Please sign in to comment.