Skip to content

Commit

Permalink
fix the example on the playground page
Browse files Browse the repository at this point in the history
  • Loading branch information
Yngwarr committed Mar 4, 2024
1 parent b5ff0e1 commit c907dec
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions test_report/src/Playground.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,24 @@
let observed = [];
let viewdef = `{
select: [
{column: [
{path: 'id'},
{path: 'birthDate'}]},
{forEach: 'name',
column:[
{path: "family", name: 'last_name'},
{path: "given.join(' ')", name: 'first_name'}]}
]}`
let viewdef = `{
resource: 'Patient',
select: [
{
column: [
{path: 'id', name: 'id'},
{path: 'birthDate', name: 'birthDate'}
]
},
{
forEach: 'name',
column: [
{path: "family", name: 'last_name'},
{path: "given.join(' ')", name: 'first_name'}
]
}
]
}`
let v = {};
let error = null;
Expand Down

0 comments on commit c907dec

Please sign in to comment.