Skip to content

Commit 182ba2a

Browse files
authored
Merge pull request #108 from BinaryStudioAcademy/fix/buefy_toast_opening
Fix toast is not opening
2 parents cf1db17 + 4c6788f commit 182ba2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/components/mixin/showStatusToast.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
export default {
22
methods: {
33
showErrorMessage(message) {
4-
this.$toast.open({
4+
this.$buefy.toast.open({
55
message,
66
type: 'is-danger',
77
});
88
},
99

1010
showSuccessMessage(message) {
11-
this.$toast.open({
11+
this.$buefy.toast.open({
1212
message,
1313
type: 'is-success',
1414
});

0 commit comments

Comments
 (0)