You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your example gif shows this module only allowing one option to be selected at a time (which is how a radio button should work). It doesn't do it by default and I can't find an option to turn it on. Here's an abbreviated version of my code:
let enq = new Enquirer();
enq.register('radio', cb);
enq.question('idlFile', 'Which interface do you want to work with?', {
type: 'radio',
choices: names
});
let answers = await enq.prompt('idlFile');
The text was updated successfully, but these errors were encountered:
Your example gif shows this module only allowing one option to be selected at a time (which is how a radio button should work). It doesn't do it by default and I can't find an option to turn it on. Here's an abbreviated version of my code:
The text was updated successfully, but these errors were encountered: