Skip to content

Commit

Permalink
resource : fix json share/clipboard/download
Browse files Browse the repository at this point in the history
  • Loading branch information
hprieur13 committed Oct 19, 2023
1 parent c6d230c commit f1fcb64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fhirResource.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class FhirResource extends HTMLElement {
break;
case "tabJson":
default:
content = JSON.stringify(this._resource.json);
content.value = JSON.stringify(this._resource.json);
content.type = 'json';
break;
}
Expand Down

0 comments on commit f1fcb64

Please sign in to comment.