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
Currently the PromptDialog only accepts one value. There should be an array that can be submitted in the "value" field, and then the done() callback function can do a loop through the results.
ex:
core.make('osjs/dialog', 'prompt', {
message: `Type in your name:`,
value: ['First Name', 'Last Name']
}, done(value => {...}