Skip to content

Commit

Permalink
Fixed range to start at 1
Browse files Browse the repository at this point in the history
  • Loading branch information
guzmanvig committed Dec 16, 2024
1 parent b9f9acd commit dfa4b20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/lib/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const SelectionMetaRow = ({ selection }) => {
<div className="meta-datum">
<p id="field">RANGE</p>
<p id="value">
{start} - {end}
{start + 1} - {end + 1}
</p>
</div>
)}
Expand Down

0 comments on commit dfa4b20

Please sign in to comment.