Merge pull request #145 from Safelite/defect/formatString-method

Use formatString ISS implementation
This commit is contained in:
Kulbhushan Kaushik 2023-01-24 07:37:46 -05:00 committed by GitHub
commit 361b32a504
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -208,7 +208,7 @@ export default {
},
methods: {
formatString(str) {
return str?.replaceAll(" ", "-");
return String(str).replaceAll(" ", "-");
},
setLastValuePushedToGa(lastValuePushedToGa) {
this.lastValuePushedToGa = lastValuePushedToGa;