Skip to content

Commit

Permalink
Merge pull request #279 from Lattice-Automation/fix/demo-range
Browse files Browse the repository at this point in the history
Updated range to be 1-based
  • Loading branch information
guzmanvig authored Dec 26, 2024
2 parents b9f9acd + dfa4b20 commit 78c6591
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 78c6591

Please sign in to comment.