Skip to content

Commit 4c4c507

Browse files
authored
Update tags.ts
1 parent 545e888 commit 4c4c507

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

src/schemas/tags.ts

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,18 @@ const languages: Array<object> = [
6060
{ label: "WebAssembly", variants: ["Web Assembly", "wasm"] },
6161
];
6262

63+
const operating_systems: Array<object> = [
64+
{ label: "Android", variants: ["ChromeOS"] },
65+
{ label: "iOS" },
66+
{ label: "Linux" },
67+
{ label: "MacOS", variants: ["OS X"] },
68+
{ label: "Windows", variants: ["ms windows"] },
69+
];
70+
71+
const presentation: Array<object> = [
72+
{ label: "Video" }
73+
]
74+
6375
const product_features: Array<object> = [
6476
{ label: "Web Crypto", variants: ["webcrypto"] },
6577
{ label: "RPC" },
@@ -90,14 +102,6 @@ const protocols: Array<object> = [
90102
{ label: "Wireguard" },
91103
];
92104

93-
const operating_systems: Array<object> = [
94-
{ label: "Android", variants: ["ChromeOS"] },
95-
{ label: "iOS" },
96-
{ label: "Linux" },
97-
{ label: "MacOS", variants: ["OS X"] },
98-
{ label: "Windows", variants: ["ms windows"] },
99-
];
100-
101105
const use_cases: Array<object> = [
102106
{ label: "AI" },
103107
{ label: "Authentication", variants: ["auth"] },
@@ -128,6 +132,7 @@ export const tags = {
128132
frameworks,
129133
integrations,
130134
languages,
135+
presentation,
131136
product_features,
132137
protocols,
133138
operating_systems,

0 commit comments

Comments
 (0)