From 9b6dce696fe251a609d99ac34e464a1dff1a01ad Mon Sep 17 00:00:00 2001 From: Michael Bromley Date: Tue, 21 Nov 2023 10:58:25 +0100 Subject: [PATCH] docs: Fix missing import in custom detail component example --- .../extending-the-admin-ui/custom-detail-components/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/guides/extending-the-admin-ui/custom-detail-components/index.md b/docs/docs/guides/extending-the-admin-ui/custom-detail-components/index.md index ef8ad447b2..11f727e5eb 100644 --- a/docs/docs/guides/extending-the-admin-ui/custom-detail-components/index.md +++ b/docs/docs/guides/extending-the-admin-ui/custom-detail-components/index.md @@ -23,7 +23,7 @@ Let's imagine that your project has an external content management system (CMS) ```ts title="src/plugins/cms/ui/components/product-info/product-info.component.ts" import { Component, OnInit } from '@angular/core'; -import { switchMap } from 'rxjs'; +import { Observable, switchMap } from 'rxjs'; import { FormGroup } from '@angular/forms'; import { DataService, CustomDetailComponent, SharedModule } from '@vendure/admin-ui/core'; import { CmsDataService } from '../../providers/cms-data.service';