Skip to content

Commit

Permalink
Add HTML support for analysis page instructions configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
srpiatt committed Jan 31, 2025
1 parent 76c6fa8 commit b4186e3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/routes/(picsure)/(authorized)/analyze/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@
The PIC-SURE Application Programming Interface (API) can be used in an analysis environment of
your choice. This API is available in both Python and R coding languages.
</p>
<p>{branding.analysisConfig.instructions.connection}</p>
<!-- eslint-disable-next-line svelte/no-at-html-tags -->
<p>{@html branding.analysisConfig.instructions.connection}</p>
<div class="flex justify-center"><UserToken /></div>
<p>{branding.analysisConfig.instructions.execution}</p>
<!-- eslint-disable-next-line svelte/no-at-html-tags -->
<p>{@html branding.analysisConfig.instructions.execution}</p>
<TabGroup class="card p-4">
<Tab bind:group={tabSet} name="python" value={0}>Python</Tab>
<Tab bind:group={tabSet} name="r" value={1}>R</Tab>
Expand Down

0 comments on commit b4186e3

Please sign in to comment.