Skip to content

Commit

Permalink
Count columns from 1 instead of 0
Browse files Browse the repository at this point in the history
  • Loading branch information
silviubogan committed Oct 12, 2020
1 parent ed5dd18 commit 904cb9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Widgets/ColumnsWidget.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const ColumnsWidget = (props) => {
<Icon name={dragSVG} size="18px" />
</div>
<div className="column-area">
<div className="label">Column {index}</div>
<div className="label">Column {index + 1}</div>
{value.blocks_layout?.items?.length > 1 ? (
<button
onClick={() => {
Expand Down

0 comments on commit 904cb9c

Please sign in to comment.