File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -440,8 +440,7 @@ export default {
440
440
computed: {
441
441
canAddVersionIdentifier () {
442
442
return this .versionIdentifierData .identifierValue &&
443
- this .versionIdentifierData .identifierName && this .versionIdentifierData .identifierName [' @value' ] &&
444
- this .versionIdentifierData .identifierType ;
443
+ this .versionIdentifierData .identifierName && this .versionIdentifierData .identifierName [' @value' ];
445
444
},
446
445
queryParams () {
447
446
return this .$store .getters [' editor/queryParams' ];
Original file line number Diff line number Diff line change @@ -1117,7 +1117,7 @@ export default {
1117
1117
},
1118
1118
isVersionIdentifier : function (type ) {
1119
1119
appLog (" isVersionIdentifier" , type);
1120
- if (type && (type[' https://purl.org/ctdl/terms/identifierType ' ] || (Array .isArray (type) && type[0 ] && type[0 ][' https://purl.org/ctdl/terms/identifierType ' ]))) {
1120
+ if (type && (type[' https://purl.org/ctdl/terms/identifierTypeName ' ] || (Array .isArray (type) && type[0 ] && type[0 ][' https://purl.org/ctdl/terms/identifierTypeName ' ]))) {
1121
1121
return true ;
1122
1122
}
1123
1123
return false ;
You can’t perform that action at this time.
0 commit comments