From dc0ace93a54826241b576a4eb5f28ff45fde6c06 Mon Sep 17 00:00:00 2001 From: "cristian.jora" Date: Mon, 13 Feb 2017 13:55:46 +0200 Subject: [PATCH] Amend error message for vue-multi-select --- src/fields/fieldVueMultiSelect.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fields/fieldVueMultiSelect.vue b/src/fields/fieldVueMultiSelect.vue index 36ebc81f..3e421816 100644 --- a/src/fields/fieldVueMultiSelect.vue +++ b/src/fields/fieldVueMultiSelect.vue @@ -97,7 +97,7 @@ created() { // Check if the component is loaded globally if (!this.$root.$options.components["multiselect"]) { - console.error("'vue-multiselect' is missing. Please download from https://github.com/monterail/vue-multiselect and load the script in the HTML head section!"); + console.error("'vue-multiselect' is missing. Please download from https://github.com/monterail/vue-multiselect and register the component globally!"); } } };