From cd40bb192f2942cb13a97b166945534e4da61b6b Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Tue, 19 Oct 2021 21:57:51 +0100 Subject: [PATCH] :zap: Fixes value not updating on form init --- src/components/FormElements/Radio.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/FormElements/Radio.vue b/src/components/FormElements/Radio.vue index cfc0e0ff..f3415612 100644 --- a/src/components/FormElements/Radio.vue +++ b/src/components/FormElements/Radio.vue @@ -37,7 +37,7 @@ export default { }, created() { if (this.initialOption) { - this.selectedRadio = this.initialOption; + this.updateValue(this.initialOption); } }, computed: {