Update buefy dialog, notification, toast

This commit is contained in:
alkl58
2024-11-06 16:51:20 +01:00
committed by Milos Stojanovic
parent f757fcdec2
commit d9273d569a
8 changed files with 22 additions and 22 deletions

View File

@@ -172,7 +172,7 @@ export default {
confirmSave() {
if (this.formFields.role == 'guest' && this.getPermissionsArray().length) {
this.$dialog.confirm({
this.$buefy.dialog.confirm({
message: this.lang('Are you sure you want to allow access to everyone?'),
type: 'is-danger',
cancelText: this.lang('Cancel'),
@@ -199,7 +199,7 @@ export default {
permissions: this.getPermissionsArray(),
})
.then(res => {
this.$toast.open({
this.$buefy.toast.open({
message: this.lang('Updated'),
type: 'is-success',
})