Skip to content

Commit

Permalink
Fixed a bug where numbers were not updated in GUI
Browse files Browse the repository at this point in the history
  • Loading branch information
feserm committed Dec 14, 2023
1 parent ade59d1 commit c0b27a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/isa/generic/materials/Materials.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@
<!-- MY CODE FROM HERE -->
<div class="material-info">
<SampleLoad bind:value={study} />
Number of materials: {materials.sources.length}<br />
Number of samples: {materials.samples.length}
Number of materials: {study.materials.sources.length}<br />
Number of samples: {study.materials.samples.length}
</div>
</div>

Expand Down

0 comments on commit c0b27a8

Please sign in to comment.