From fb4c6f5fa397d661aff69365baf1e6944e634255 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 20 Apr 2020 20:36:33 +0200 Subject: [PATCH] fix #3607 @2 --- src/resources/views/fields/dropzone_media.blade.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/resources/views/fields/dropzone_media.blade.php b/src/resources/views/fields/dropzone_media.blade.php index 2283b85..580eeea 100644 --- a/src/resources/views/fields/dropzone_media.blade.php +++ b/src/resources/views/fields/dropzone_media.blade.php @@ -115,6 +115,7 @@ $collection = old(square_brackets_to_dots($field['name'])) ?? $field['value'] ?? font-weight: 700; font-size: 24px; line-height: 1em; + pointer-events: none; } .dropzone .dz-preview [data-dz-download] { @@ -283,7 +284,7 @@ $collection = old(square_brackets_to_dots($field['name'])) ?? $field['value'] ?? notification_type = 'error'; } - new PNotify({ + new Noty({ text: response.message, type: notification_type, icon: false @@ -296,7 +297,7 @@ $collection = old(square_brackets_to_dots($field['name'])) ?? $field['value'] ?? message = xhr.responseJSON.message; } - new PNotify({ + new Noty({ text: message, type: 'error', icon: false @@ -346,7 +347,7 @@ $collection = old(square_brackets_to_dots($field['name'])) ?? $field['value'] ?? message = response.message; } - new PNotify({ + new Noty({ text: message, type: 'error', icon: false @@ -362,7 +363,7 @@ $collection = old(square_brackets_to_dots($field['name'])) ?? $field['value'] ?? message = xhr.responseJSON.message; } - new PNotify({ + new Noty({ text: message, type: 'error', icon: false -- 2.39.5