From b40a37c5d3f89908a1733eb0588a1a62b32b9e1a Mon Sep 17 00:00:00 2001 From: Asterios Date: Wed, 8 Sep 2021 22:19:02 +0300 Subject: [PATCH] Fixed values() not working properly --- resources/js/components/FormField.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/components/FormField.vue b/resources/js/components/FormField.vue index 9bf3d1b..712f478 100644 --- a/resources/js/components/FormField.vue +++ b/resources/js/components/FormField.vue @@ -118,7 +118,7 @@ export default { setInitialValue() { this.value = this.field.value || []; - this.items = this.field.value || []; + this.items = this.field.items || []; },