Skip to content

Commit ef5612a

Browse files
committed
Updating with new class name for html quick view
1 parent 3f92df6 commit ef5612a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/spfx/viva/get-started/build-html-quickview-adaptive-card-extension.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ The last step is to update the Quick View component to import the style sheet an
134134
Replace this line with the following line:
135135

136136
```typescript
137-
import { BaseHTMLQuickView } from '@microsoft/sp-adaptive-card-extension-base';
137+
import { BaseWebQuickView } from '@microsoft/sp-adaptive-card-extension-base';
138138
```
139139

140140
1. Add the following two `import` statements after the existing `import` statements:
@@ -147,7 +147,7 @@ The last step is to update the Quick View component to import the style sheet an
147147
1. Locate the `QuickView` class declaration and change the base class it extends from the following:
148148

149149
```typescript
150-
export class QuickView extends BaseHTMLQuickView<
150+
export class QuickView extends BaseWebQuickView<
151151
IHtmlQuickViewAdaptiveCardExtensionProps,
152152
IHtmlQuickViewAdaptiveCardExtensionState,
153153
IQuickViewData
@@ -157,7 +157,7 @@ The last step is to update the Quick View component to import the style sheet an
157157
... to the following:
158158

159159
```typescript
160-
export class QuickView extends BaseHTMLQuickView<
160+
export class QuickView extends BaseWebQuickView<
161161
IHtmlQuickViewAdaptiveCardExtensionProps,
162162
IHtmlQuickViewAdaptiveCardExtensionState
163163
> {

0 commit comments

Comments
 (0)