From c750957465c6791889205f0ba2e84c781261c27c Mon Sep 17 00:00:00 2001 From: Erik Mejer Hansen Date: Thu, 24 Jan 2019 13:21:46 +0100 Subject: [PATCH] Convert lint breakage --- src/engine/runtime.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/engine/runtime.js b/src/engine/runtime.js index 89e9275fe..5a48278bc 100644 --- a/src/engine/runtime.js +++ b/src/engine/runtime.js @@ -1161,9 +1161,8 @@ class Runtime extends EventEmitter { } const defaultValue = - typeof argInfo.defaultValue === 'undefined' - ? '' - : escapeHtml(maybeFormatMessage(argInfo.defaultValue, this.makeMessageContextForTarget()).toString()); + typeof argInfo.defaultValue === 'undefined' ? '' : + escapeHtml(maybeFormatMessage(argInfo.defaultValue, this.makeMessageContextForTarget()).toString()); if (argTypeInfo.check) { argJSON.check = argTypeInfo.check;