File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs/spfx/viva/get-started Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ The last step is to update the Quick View component to import the style sheet an
134
134
Replace this line with the following line:
135
135
136
136
```typescript
137
- import { BaseHTMLQuickView } from '@microsoft/sp-adaptive-card-extension-base';
137
+ import { BaseWebQuickView } from '@microsoft/sp-adaptive-card-extension-base';
138
138
```
139
139
140
140
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
147
147
1. Locate the `QuickView` class declaration and change the base class it extends from the following:
148
148
149
149
```typescript
150
- export class QuickView extends BaseHTMLQuickView <
150
+ export class QuickView extends BaseWebQuickView <
151
151
IHtmlQuickViewAdaptiveCardExtensionProps,
152
152
IHtmlQuickViewAdaptiveCardExtensionState,
153
153
IQuickViewData
@@ -157,7 +157,7 @@ The last step is to update the Quick View component to import the style sheet an
157
157
... to the following:
158
158
159
159
```typescript
160
- export class QuickView extends BaseHTMLQuickView <
160
+ export class QuickView extends BaseWebQuickView <
161
161
IHtmlQuickViewAdaptiveCardExtensionProps,
162
162
IHtmlQuickViewAdaptiveCardExtensionState
163
163
> {
You can’t perform that action at this time.
0 commit comments