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

Commit 191480c

Browse files
committed
Fix zero indexing
1 parent 101deff commit 191480c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/PropertyEditor.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
}}
3030
/>
3131
<div style:writing-mode="vertical-lr">
32-
{propertyDescriptions[index] || ''}
32+
{propertyDescriptions[index + 1] || ''}
3333
</div>
3434
</div>
3535
{/each}

0 commit comments

Comments
 (0)