Changed notification message position ( #86696p66d )
This commit is contained in:
2
resources/assets/js/views/auth/common.js
vendored
2
resources/assets/js/views/auth/common.js
vendored
@ -54,6 +54,8 @@ const login = new Vue({
|
||||
let type = notify.level;
|
||||
|
||||
this.$notify({
|
||||
verticalAlign: 'bottom',
|
||||
horizontalAlign: 'left',
|
||||
message: notify.message,
|
||||
timeout: 5000,
|
||||
icon: '',
|
||||
|
2
resources/assets/js/views/common/contacts.js
vendored
2
resources/assets/js/views/common/contacts.js
vendored
@ -69,6 +69,8 @@ const app = new Vue({
|
||||
|
||||
if (response.data.error) {
|
||||
this.$notify({
|
||||
verticalAlign: 'bottom',
|
||||
horizontalAlign: 'left',
|
||||
message: response.data.message,
|
||||
timeout: 0,
|
||||
icon: 'fas fa-bell',
|
||||
|
2
resources/assets/js/views/modules/apps.js
vendored
2
resources/assets/js/views/modules/apps.js
vendored
@ -106,6 +106,8 @@ const app = new Vue({
|
||||
add_to_cart_promise.then(response => {
|
||||
if (response.data.success) {
|
||||
this.$notify({
|
||||
verticalAlign: 'bottom',
|
||||
horizontalAlign: 'left',
|
||||
message: response.data.message,
|
||||
timeout: 0,
|
||||
icon: "shopping_cart_checkout",
|
||||
|
@ -112,6 +112,8 @@ export default {
|
||||
})
|
||||
.catch((error) => {
|
||||
this.$notify({
|
||||
verticalAlign: 'bottom',
|
||||
horizontalAlign: 'left',
|
||||
message: this.translations.finish.error_message,
|
||||
timeout: 1000,
|
||||
icon: "",
|
||||
|
Reference in New Issue
Block a user