From 275921ac70d0333bc72e90b906cba38435cb9272 Mon Sep 17 00:00:00 2001 From: Gerhard Schlager Date: Thu, 16 Jan 2020 00:12:27 +0100 Subject: [PATCH] Make prettier happy --- .../javascripts/discourse/components/google-dfp-ad.js.es6 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/javascripts/discourse/components/google-dfp-ad.js.es6 b/assets/javascripts/discourse/components/google-dfp-ad.js.es6 index a1234b9..1010ca0 100755 --- a/assets/javascripts/discourse/components/google-dfp-ad.js.es6 +++ b/assets/javascripts/discourse/components/google-dfp-ad.js.es6 @@ -127,7 +127,7 @@ function getWidthAndHeight(placement, settings, isMobile) { } if (size === "fluid") { - return { width: 'fluid', height: 'fluid' }; + return { width: "fluid", height: "fluid" }; } const sizeObj = { @@ -285,14 +285,14 @@ export default AdComponent.extend({ @computed("width", "height") adWrapperStyle(w, h) { - if (w !== 'fluid') { + if (w !== "fluid") { return `width: ${w}px; height: ${h}px;`.htmlSafe(); } }, @computed("width") adTitleStyleMobile(w) { - if (w !== 'fluid') { + if (w !== "fluid") { return `width: ${w}px;`.htmlSafe(); } },