Skip to content

Commit

Permalink
Show channel IDs in channel prompt when starting dev server (#1222)
Browse files Browse the repository at this point in the history
Channel prompt show channel ID
  • Loading branch information
loganwoolf authored Aug 29, 2024
1 parent 7729f18 commit ac55f21
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 ac55f21

Please sign in to comment.