Switch from string interpolation to .toString string prototype

pull/10616/head
Andrew Watkins 2018-04-19 10:00:27 -07:00
parent 2b3b93fb37
commit 413eedeb4b
1 changed files with 1 additions and 1 deletions

View File

@ -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 {