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
I think we should be able to use our entire customized UI too.
the code below prevents us from creating our own custom dialogs, because it accuses us of duplication as it extends the default dialogs from WixUI (errors, user exit, install dialogs, etc)
if (this.ui && !this.extensions.find((e) => e === 'WixUIExtension')) { this.extensions.push('WixUIExtension'); } inside function createFire() on creator.js
maybe we could make this optional, what do you think?
The text was updated successfully, but these errors were encountered:
I think we should be able to use our entire customized UI too.
the code below prevents us from creating our own custom dialogs, because it accuses us of duplication as it extends the default dialogs from WixUI (errors, user exit, install dialogs, etc)
if (this.ui && !this.extensions.find((e) => e === 'WixUIExtension')) { this.extensions.push('WixUIExtension'); }
inside function createFire() on creator.js
maybe we could make this optional, what do you think?
The text was updated successfully, but these errors were encountered: