Switch from string interpolation to .toString string prototype
parent
2b3b93fb37
commit
413eedeb4b
|
@ -106,7 +106,7 @@ class FuncArg extends PureComponent<Props> {
|
|||
}
|
||||
|
||||
private get value(): string {
|
||||
return `${this.props.value}`
|
||||
return this.props.value.toString()
|
||||
}
|
||||
|
||||
private get boolValue(): boolean {
|
||||
|
|
Loading…
Reference in New Issue