Skip to content

Commit

Permalink
Setting demo server to https
Browse files Browse the repository at this point in the history
  • Loading branch information
alopezo committed Jan 5, 2024
1 parent bec90de commit e617796
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
<style>html,body{height:100%}body{margin:0;font-family:Roboto,Helvetica Neue,sans-serif}</style><link rel="stylesheet" href="styles.25b54d3c54f3517b.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.25b54d3c54f3517b.css"></noscript></head>
<body class="mat-typography">
<app-root></app-root>
<script src="runtime.c2d2548033d65b02.js" type="module"></script><script src="polyfills.75186c7b7fc1d123.js" type="module"></script><script src="scripts.a1e2309b4257c7b3.js" defer></script><script src="main.4f579096257fa73c.js" type="module"></script>
<script src="runtime.c2d2548033d65b02.js" type="module"></script><script src="polyfills.75186c7b7fc1d123.js" type="module"></script><script src="scripts.a1e2309b4257c7b3.js" defer></script><script src="main.78503dcbb2fa9d07.js" type="module"></script>

</body></html>

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/app/services/fhir.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { BehaviorSubject } from 'rxjs';
providedIn: 'root'
})
export class FhirService {
private baseUrlSubject = new BehaviorSubject<string>('http://hapi.fhir.org/baseR4');
private baseUrlSubject = new BehaviorSubject<string>('https://hapi.fhir.org/baseR4');
baseUrl$ = this.baseUrlSubject.asObservable();

private userTagSubject = new BehaviorSubject<string>('snomed-qtag');
Expand Down

0 comments on commit e617796

Please sign in to comment.