From 4c4c507ab391bebf1deb8dd4a8591a5ab2208400 Mon Sep 17 00:00:00 2001 From: Kody Jackson Date: Fri, 21 Mar 2025 14:38:39 -0500 Subject: [PATCH 1/2] Update tags.ts --- src/schemas/tags.ts | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/src/schemas/tags.ts b/src/schemas/tags.ts index 15cd9a278273136..6d30d82149ce210 100644 --- a/src/schemas/tags.ts +++ b/src/schemas/tags.ts @@ -60,6 +60,18 @@ const languages: Array = [ { label: "WebAssembly", variants: ["Web Assembly", "wasm"] }, ]; +const operating_systems: Array = [ + { label: "Android", variants: ["ChromeOS"] }, + { label: "iOS" }, + { label: "Linux" }, + { label: "MacOS", variants: ["OS X"] }, + { label: "Windows", variants: ["ms windows"] }, +]; + +const presentation: Array = [ + { label: "Video" } + ] + const product_features: Array = [ { label: "Web Crypto", variants: ["webcrypto"] }, { label: "RPC" }, @@ -90,14 +102,6 @@ const protocols: Array = [ { label: "Wireguard" }, ]; -const operating_systems: Array = [ - { label: "Android", variants: ["ChromeOS"] }, - { label: "iOS" }, - { label: "Linux" }, - { label: "MacOS", variants: ["OS X"] }, - { label: "Windows", variants: ["ms windows"] }, -]; - const use_cases: Array = [ { label: "AI" }, { label: "Authentication", variants: ["auth"] }, @@ -128,6 +132,7 @@ export const tags = { frameworks, integrations, languages, + presentation, product_features, protocols, operating_systems, From 54381dc052f8a8f751b98208f8cc34f9ae4662d4 Mon Sep 17 00:00:00 2001 From: kodster28 Date: Fri, 21 Mar 2025 14:43:13 -0500 Subject: [PATCH 2/2] format --- src/schemas/tags.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/schemas/tags.ts b/src/schemas/tags.ts index 6d30d82149ce210..6ea693d0b2b5aa6 100644 --- a/src/schemas/tags.ts +++ b/src/schemas/tags.ts @@ -68,9 +68,7 @@ const operating_systems: Array = [ { label: "Windows", variants: ["ms windows"] }, ]; -const presentation: Array = [ - { label: "Video" } - ] +const presentation: Array = [{ label: "Video" }]; const product_features: Array = [ { label: "Web Crypto", variants: ["webcrypto"] },