aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/typed-message-renderer.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/typed-message-renderer.js')
-rw-r--r--ui/app/components/typed-message-renderer.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/typed-message-renderer.js b/ui/app/components/typed-message-renderer.js
index a042b57be..d170d63b7 100644
--- a/ui/app/components/typed-message-renderer.js
+++ b/ui/app/components/typed-message-renderer.js
@@ -32,11 +32,11 @@ TypedMessageRenderer.prototype.render = function () {
)
}
-function renderTypedData(values) {
+function renderTypedData (values) {
return values.map(function (value) {
return h('div', {}, [
h('strong', {style: {display: 'block', fontWeight: 'bold'}}, String(value.name) + ':'),
h('div', {}, value.value),
])
})
-} \ No newline at end of file
+}