Skip to content

Commit

Permalink
Merge pull request #84 from vtex-apps/fix/sales-channel-value
Browse files Browse the repository at this point in the history
[PERMISSION-38]
  • Loading branch information
arturmagalhaesjr authored Nov 7, 2022
2 parents f9b35e8 + 83a2322 commit 0859cbb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Fixed

- Fixed on the sales channel values

## [1.16.1] - 2022-10-28

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const OrganizationDetailsSalesChannel = ({
salesChannelsData.salesChannels.forEach(
(channel: { id: string; name: string }) => {
options.push({
value: channel.name,
value: channel.id,
label: `${channel.name} (${channel.id})`,
})
}
Expand Down

0 comments on commit 0859cbb

Please sign in to comment.