Skip to content

Commit

Permalink
fix: small syntax error in disable variable quality
Browse files Browse the repository at this point in the history
  • Loading branch information
frederickfogerty committed Jun 3, 2020
1 parent 18abfe0 commit 6a76f8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/vue-imgix/ix-img.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class IxImg extends IxImgProps {
...this.imgixParams,
},
{
disableVariableQuality: this.disableVariableQuality ?? false,
disableVariableQuality: Boolean(this.disableVariableQuality),
},
);

Expand Down

0 comments on commit 6a76f8f

Please sign in to comment.