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
When using the Prompt example from the documentation you encounter following:
You can set the prompt helptext to whatever you want it will always display the default text.
What fixed it for me is setting the first parametet null like this:
constmessage=`Wohin soll Objekt ${id} verschoben werden?`;consthelp='Hier die neue Position eintragen:';this.$dialog.prompt(message,{promptHelp: help,}).then((dialog)=>{// Triggered when proceed button is clicked// Show an alert with the user's input as the messagethis.$dialog.alert(dialog.data||'[empty]');}).catch(()=>{// Triggered when dialog is dismissed by userconsole.log('Prompt dismissed');});
The text was updated successfully, but these errors were encountered:
When using the Prompt example from the documentation you encounter following:
You can set the prompt helptext to whatever you want it will always display the default text.
What fixed it for me is setting the first parametet null like this:
The text was updated successfully, but these errors were encountered: