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 Vuetify webpack and working inside a dialog that is using fullscreen hide-overlay transition="dialog-bottom-transition" the dialog is closed when I am using a confirm snotify,
This only seems to happen when I action this.$snotify.remove(toast.id)
Could this be a bug? here is my code snippet.
deleteLocation: function (id) { if (this.$snotify.confirm('Are you sure you want to delete this item?', 'Confirm delete', { closeOnClick: false, buttons: [ {text: 'Yes', action: (toast) => { session.delete(api/v1/system/myorg/locations/${id}/) .then((response) => { this.getLocations(); return response; }) .catch((error) => { console.log(error) }); this.$snotify.remove(toast.id); } }, {text: 'No', action: (toast) => {this.$snotify.remove(toast.id); }, bold: true}, ] }) ); },
The text was updated successfully, but these errors were encountered:
When using the Vuetify webpack and working inside a dialog that is using fullscreen hide-overlay transition="dialog-bottom-transition" the dialog is closed when I am using a confirm snotify,
This only seems to happen when I action this.$snotify.remove(toast.id)
Could this be a bug? here is my code snippet.
deleteLocation: function (id) { if (this.$snotify.confirm('Are you sure you want to delete this item?', 'Confirm delete', { closeOnClick: false, buttons: [ {text: 'Yes', action: (toast) => { session.delete(
api/v1/system/myorg/locations/${id}/) .then((response) => { this.getLocations(); return response; }) .catch((error) => { console.log(error) }); this.$snotify.remove(toast.id); } }, {text: 'No', action: (toast) => {this.$snotify.remove(toast.id); }, bold: true}, ] }) ); },
The text was updated successfully, but these errors were encountered: