Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

Commit

Permalink
Fix zero indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
nint8835 committed May 2, 2024
1 parent 101deff commit 191480c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/PropertyEditor.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
}}
/>
<div style:writing-mode="vertical-lr">
{propertyDescriptions[index] || ''}
{propertyDescriptions[index + 1] || ''}
</div>
</div>
{/each}
Expand Down

0 comments on commit 191480c

Please sign in to comment.