Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Specy committed Nov 9, 2024
1 parent d7dea27 commit 61e8076
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/dotlr/TraceTableRenderer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</div>
<div class="body-cell">
<div class="item">
{step.remaining_tokens.map(i => stringifyToken(i, true)).join(' ')}
{step.remaining_tokens.map(i => stringifyToken(i.value, true)).join(' ')}
</div>
</div>
<div class="body-cell" style="gap: 0">
Expand Down
5 changes: 2 additions & 3 deletions src/components/layout/ExpandableContainer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@
align-items: center;
gap: 1rem;
background-color: transparent;
padding: 0.5rem;
cursor: pointer;
color: var(--primary-text);
}
.expandable-container {
display: flex;
flex-direction: column;
padding: 0.5rem;
background-color: var(--primary);
color: var(--primary-text);
border-radius: 0.4rem;
Expand All @@ -65,9 +65,8 @@
.expandable-container-content {
display: none;
flex-direction: column;
padding: 0.5rem;
border-top: solid 0.2rem var(--secondary-5);
margin-top: 0.5rem;
padding-top: 0.5rem;
}
.expandable-container-open .expandable-container-content {
Expand Down
3 changes: 3 additions & 0 deletions src/routes/projects/[projectId]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@
padding="0.8rem"
gap="0.5rem"
>
<p>
If you want to read the full documentation, visit <a style="text-decoration: underline" target="_blank" href="/docs/dotlr">here</a>
</p>
<DotlrDocs />
</Column>
</FloatingContainer>
Expand Down

0 comments on commit 61e8076

Please sign in to comment.