Enable filtering by status

This commit is contained in:
Sam Carlton 2020-11-20 13:35:03 -06:00
parent 9361066244
commit 474c06738d
2 changed files with 35 additions and 6 deletions

View file

@ -7,10 +7,10 @@ import slugify from 'slugify'
const md = new MarkdownIt()
const statuses = {
'✅': 'yes',
'✳️': 'yes-but',
'⏹': 'in-progress',
export const statuses = {
'✅': 'native',
'✳️': 'rosetta',
'⏹': 'no-in-progress',
'🚫': 'no'
}