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

Commit

Permalink
fix: Render all steps (#99)
Browse files Browse the repository at this point in the history
* fix: Render all steps

* ci: added v for tag
  • Loading branch information
Jaryt authored Jun 2, 2022
1 parent 8b745d0 commit 288919a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ workflows:
branches:
ignore: /.*/
tags:
only: /^\d+\.\d+\.\d+$/
only: /^v\d+\.\d+\.\d+$/
7 changes: 4 additions & 3 deletions src/components/atoms/form/ListProperty.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,16 @@ const ListProperty = ({
}}
>
<Droppable droppableId="droppable">
{(provided, snapshot) => (
{(provided) => (
<div
{...provided.droppableProps}
ref={provided.innerRef}
className="p-2 pr-0"
>
{Object.keys(values[0]).map((cmd: any, index: number) => (
{values.map((cmd: any, index: number) => (
<ListItem
name={cmd}
name={Object.keys(cmd)[0]}
key={index}
index={index}
arrayHelper={arrayHelper}
/>
Expand Down

0 comments on commit 288919a

Please sign in to comment.