gcp-nrces-fhir
Advanced tools
Comparing version 9.0.52 to 9.0.53
@@ -131,10 +131,9 @@ "use strict"; | ||
.map(el => { | ||
return [ | ||
el.display ? `<i>Display</i> ${el.display}` : "", | ||
el.type ? `<i>Type</i> ${el.type}` : "", | ||
el.resource ? `<i>Resource</i> ${el.resource}` : "", | ||
el.id ? `<i>Resource ID </i>${el.id}` : "", | ||
] | ||
.filter(Boolean) | ||
.join(" | "); | ||
const fields = [ | ||
el.display ? `<span><i>Display:</i> ${el.display}</span>` : "", | ||
el.type ? `<span><i>Type:</i> ${el.type}</span>` : "", | ||
el.resource ? `<span><i>Resource:</i> ${el.resource}</span>` : "", | ||
el.id ? `<span><i>Resource ID:</i> ${el.id}</span>` : "", | ||
].filter(Boolean).join(" | "); | ||
return fields ? `<div>${fields}</div>` : `<div><i>No details available</i></div>`; | ||
}) | ||
@@ -141,0 +140,0 @@ .join("<br>"); |
{ | ||
"name": "gcp-nrces-fhir", | ||
"version": "9.0.52", | ||
"version": "9.0.53", | ||
"description": "Google cloud healthcare api NRCES FHIR implimenataion", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
2773650
29809