Skip to content

Commit

Permalink
Fixed merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
YulNaumenko committed May 14, 2020
1 parent 7d64087 commit a37de62
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ export const ActionForm = ({
) => {
const optionsList = connectors
.filter(connectorItem => connectorItem.actionTypeId === actionItem.actionTypeId)
.map(({ name, id, isPreconfigured }) => ({
label: `${name} ${isPreconfigured ? preconfiguredMessage : ''}`,
.map(({ name, id }) => ({
label: `${name}`,
key: id,
id,
}));
Expand Down

0 comments on commit a37de62

Please sign in to comment.