Skip to content

Commit

Permalink
Fixed pre
Browse files Browse the repository at this point in the history
  • Loading branch information
oxisto committed Nov 9, 2023
1 parent 3b4840a commit a4cf967
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/routes/(app)/cloud/[id]/assessments/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,12 @@
class=" inset-0 flex items-center justify-center bg-gray-100 bg-opacity-75 max-w-80"
>
<div class="bg-white rounded shadow-lg p-6">
<pre class="overflow-y-auto bg-gray-100 rounded p-4">
{JSON.stringify(assessment, null, 5)}
</pre>
<Button on:click={closeModal}>Close</Button>
<pre class="overflow-y-auto bg-gray-100 rounded p-4">{JSON.stringify(
assessment,
null,
5
)}</pre>
<Button on:click={closeModal} class="mt-2">Close</Button>
</div>
</div>
</tr>
Expand Down

0 comments on commit a4cf967

Please sign in to comment.