Fixed lint error

This commit is contained in:
Koh Wei Jie 2018-06-28 08:06:36 +08:00
parent cd90e8a869
commit f17d99f81c
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ TypedMessageRenderer.prototype.render = function () {
function renderTypedData (values) { function renderTypedData (values) {
return values.map(function (value) { return values.map(function (value) {
let v = value.value let v = value.value
if (typeof v === "boolean") { if (typeof v === 'boolean') {
v = v.toString() v = v.toString()
} }
return h('div', {}, [ return h('div', {}, [