File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -407,11 +407,14 @@ export default {
407407 }
408408 },
409409 getCveProgramReferences (){
410- if (this .containerObject .providerMetadata .shortName .toLowerCase () !== usecveRecordStore ().cveProgramShortName ) return ;
410+ if (this .containerObject .providerMetadata .shortName ? .toLowerCase () !== usecveRecordStore ().cveProgramShortName ) return ;
411411 this .cveProgramReferences = usecveRecordStore ().getReferences (this .containerObject .references );
412412 },
413413 getUpdatedDate () {
414- this .dateUpdated = this .getDate (this .containerObject .providerMetadata .dateUpdated );
414+ if (this .containerObject .providerMetadata ? .dateUpdated ) {
415+ this .dateUpdated = this .getDate (this .containerObject .providerMetadata ? .dateUpdated );
416+ }
417+
415418 },
416419 getDate (dateTime ) {
417420 const [date ] = dateTime .split (' T' );
You can’t perform that action at this time.
0 commit comments