Skip to content

Commit

Permalink
feat: Show channel IDs in channel prompt when starting dev server (#1225
Browse files Browse the repository at this point in the history
)

Co-authored-by: Logan Woolf <[email protected]>
  • Loading branch information
bc-max and loganwoolf authored Aug 29, 2024
1 parent 5872c13 commit df23a36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/stencil-push.utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ utils.promptUserToSelectChannel = async (channels) => {
name: 'channelId',
message: 'Which channel would you like to use?',
choices: channels.map((channel) => ({
name: channel.url,
name: `${channel.url} [${channel.channel_id}] `,
value: channel.channel_id,
})),
},
Expand Down

0 comments on commit df23a36

Please sign in to comment.