From 108185b700204569cc60ecc0e3de393583e5e0b7 Mon Sep 17 00:00:00 2001 From: Jason Wheeler Date: Mon, 12 Dec 2022 16:49:21 -0500 Subject: [PATCH] test fix --- src/common-components/button-question/button-question.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common-components/button-question/button-question.vue b/src/common-components/button-question/button-question.vue index a6fb6f69..5457a389 100644 --- a/src/common-components/button-question/button-question.vue +++ b/src/common-components/button-question/button-question.vue @@ -206,7 +206,7 @@ export default { }, methods: { formatString(str) { - return str?.replaceAll(" ", "-"); + return String(str).replaceAll(" ", "-"); }, setLastValuePushedToGa(lastValuePushedToGa) { this.lastValuePushedToGa = lastValuePushedToGa;