Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jjaffeux committed Aug 21, 2020
1 parent 8439608 commit 5afca0a
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -193,7 +193,11 @@ export default AdComponent.extend({

@discourseComputed("isResponsive", "isFluid")
autoAdFormat(isResponsive, isFluid) {
return isResponsive ? (isFluid ? "fluid".htmlSafe() : "auto".htmlSafe()) : false;
return isResponsive
? isFluid
? "fluid".htmlSafe()
: "auto".htmlSafe()
: false;
},

@discourseComputed("ad_width", "ad_height", "isResponsive")
Expand Down

0 comments on commit 5afca0a

Please sign in to comment.