Use formatString ISS implementation
This commit is contained in:
parent
a1df895460
commit
8a650adfa2
1 changed files with 1 additions and 1 deletions
|
|
@ -208,7 +208,7 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
formatString(str) {
|
formatString(str) {
|
||||||
return str?.replaceAll(" ", "-");
|
return String(str).replaceAll(" ", "-");
|
||||||
},
|
},
|
||||||
setLastValuePushedToGa(lastValuePushedToGa) {
|
setLastValuePushedToGa(lastValuePushedToGa) {
|
||||||
this.lastValuePushedToGa = lastValuePushedToGa;
|
this.lastValuePushedToGa = lastValuePushedToGa;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue