Skip to content

Commit

Permalink
Fix lazy load env check (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
rwd authored Mar 19, 2020
1 parent 45da911 commit 3993523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/generic/ContentCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
},
lazyLoad() {
return this.lazy && !process.env.NODE_ENV === 'test';
return this.lazy && (process.env.NODE_ENV !== 'test');
},
displayTitle() {
Expand Down

0 comments on commit 3993523

Please sign in to comment.