From 388e866e158c218fa5632441add882e7f9df95d9 Mon Sep 17 00:00:00 2001 From: Grace Park Date: Mon, 26 Jul 2021 11:13:56 -0700 Subject: [PATCH 1/2] Delete rest toc item (#20492) * delete graphql input object/object and rest toc item * add back input object and object * Update graphql-object.html --- includes/rest_toc_item.html | 1 - 1 file changed, 1 deletion(-) delete mode 100644 includes/rest_toc_item.html diff --git a/includes/rest_toc_item.html b/includes/rest_toc_item.html deleted file mode 100644 index 31ddb9c5c7..0000000000 --- a/includes/rest_toc_item.html +++ /dev/null @@ -1 +0,0 @@ -- {{operation.verb}} {{operation.requestPath}} {{operation.summary}} \ No newline at end of file From 24ecb4f4d9765446e920b9b4c6ef53dae3d2161d Mon Sep 17 00:00:00 2001 From: Mike Surowiec Date: Mon, 26 Jul 2021 14:19:35 -0400 Subject: [PATCH 2/2] hide wip languages from LanguagePicker (#20512) Co-authored-by: Chiedo John <2156688+chiedo@users.noreply.github.com> --- components/LanguagePicker.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/components/LanguagePicker.tsx b/components/LanguagePicker.tsx index 5f6b495f5e..7e05e04e82 100644 --- a/components/LanguagePicker.tsx +++ b/components/LanguagePicker.tsx @@ -28,6 +28,10 @@ export const LanguagePicker = ({ variant }: Props) => {
{langs.map((lang) => { + if (lang.wip) { + return null + } + return ( { {langs.map((lang) => { + if (lang.wip) { + return null + } + return (