diff --git a/resources/js/components/common/DataLoading.vue b/resources/js/components/common/DataLoading.vue index 2eabd3817a..205ad1ff17 100644 --- a/resources/js/components/common/DataLoading.vue +++ b/resources/js/components/common/DataLoading.vue @@ -80,7 +80,11 @@ if (error && error.code === "ERR_CANCELED") { this.noResults = false; this.error = true; - } else { + } + if (error && error.code === "ERR_BAD_REQUEST") { + this.noResults = false; + } + else { this.noResults = false; this.error = true; }