From aed5c7caadd4e82107d49089681c065f6ec04444 Mon Sep 17 00:00:00 2001 From: ajitsinghkaler Date: Wed, 5 Feb 2020 00:57:10 +0530 Subject: [PATCH] feat(docs-infra): add stable to the list of api statuses (#34981) Earlier api can be filtered based on security risk and deprecated now added stable as a status for better user experience Fixes #30396 PR Close #34981 --- aio/src/app/custom-elements/api/api-list.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/aio/src/app/custom-elements/api/api-list.component.ts b/aio/src/app/custom-elements/api/api-list.component.ts index 2adf78aec9..836aab8e03 100644 --- a/aio/src/app/custom-elements/api/api-list.component.ts +++ b/aio/src/app/custom-elements/api/api-list.component.ts @@ -57,6 +57,7 @@ export class ApiListComponent implements OnInit { statuses: Option[] = [ { value: 'all', title: 'All' }, + { value: 'stable', title: 'Stable'}, { value: 'deprecated', title: 'Deprecated' }, { value: 'security-risk', title: 'Security Risk' } ];