mscraftsman/devcon2020

FIX: Incorrect Sponsor Display Toggle

Closed this issue · 2 comments

File: /src/components/home-sponsors-section.vue

Changes:

l.25 -- return this.sponsors.filter(({ support }) => Boolean(support)); 
l.25 ++ return this.sponsors.filter(({ support }) => !!Number(support) || false);

Hello, I'll apply the change.

I applied it in #31