File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -406,11 +406,14 @@ export default {
406406 }
407407 },
408408 getCveProgramReferences (){
409- if (this .containerObject .providerMetadata .shortName .toLowerCase () !== useCveRecordLookupStore ().cveProgramShortName ) return ;
409+ if (this .containerObject .providerMetadata .shortName ? .toLowerCase () !== useCveRecordLookupStore ().cveProgramShortName ) return ;
410410 this .cveProgramReferences = useCveRecordLookupStore ().getReferences (this .containerObject .references );
411411 },
412412 getUpdatedDate () {
413- this .dateUpdated = this .getDate (this .containerObject .providerMetadata .dateUpdated );
413+ if (this .containerObject .providerMetadata ? .dateUpdated ) {
414+ this .dateUpdated = this .getDate (this .containerObject .providerMetadata ? .dateUpdated );
415+ }
416+
414417 },
415418 getDate (dateTime ) {
416419 const [date ] = dateTime .split (' T' );
You can’t perform that action at this time.
0 commit comments