From 7c4d36ac9d4954bc19948176360dfcc07799b74f Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Thu, 4 Mar 2021 21:29:39 -0600 Subject: [PATCH] Add uncategorized category --- helpers/build-app-list.js | 2 +- helpers/categories.js | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/helpers/build-app-list.js b/helpers/build-app-list.js index f5d07b3..2426b11 100644 --- a/helpers/build-app-list.js +++ b/helpers/build-app-list.js @@ -164,7 +164,7 @@ export default async function () { slug: appSlug }), category: { - slug: 'no-category' + slug: 'uncategorized' }, relatedLinks }) diff --git a/helpers/categories.js b/helpers/categories.js index 75661ed..2f4e36e 100644 --- a/helpers/categories.js +++ b/helpers/categories.js @@ -122,6 +122,16 @@ export const categories = { slug: 'homebrew', icon: '🍺' }, + + + // Uncategorized + 'uncategorized': { + id: 1000, + ...categoryTemplate, + label: 'Uncategorized', + pluralLabel: 'Uncategorized Software', + slug: 'uncategorized', + }, }