Skip to content

Commit 7e884d0

Browse files
authored
Update build-first-sharepoint-adaptive-card-extension.md
1 parent babee31 commit 7e884d0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/spfx/viva/get-started/build-first-sharepoint-adaptive-card-extension.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Build your first SharePoint Adaptive Card Extension
33
description: Adaptive Card Extensions (ACEs) are a new SharePoint Framework component type, which enable developers to build rich, native extensions to Viva Connections' Dashboards and SharePoint Pages. In this tutorial, you'll build and explore your first ACE.
4-
ms.date: 07/27/2021
4+
ms.date: 08/05/2021
55
ms.prod: sharepoint
66
localization_priority: Priority
77
---
@@ -49,7 +49,7 @@ The following arguments are used in the previous command:
4949
- `-l`: skips tests and `tslint` to make the inner loop faster
5050
- `--nobrowser`: skips trying to launch the `localhost` test page
5151

52-
Once local webserver is running, navigate to the hosted workbench: `https://{tenant}.sharepoint.com/_layouts/15/workbench.aspx`
52+
Once local webserver is running, navigate to the hosted Workbench: `https://{tenant}.sharepoint.com/_layouts/15/workbench.aspx`
5353

5454
Open the Web Part Toolbox and select your ACE:
5555

@@ -70,7 +70,7 @@ The second way an ACE can render is called the **Quick view**. When you interact
7070
> [!NOTE]
7171
> ACE interaction is disabled while in **Edit** mode. The Workbench or Page must be in *Preview* or *Read* mode to interact with the ACE.
7272
73-
Switch the workbench to **Preview** mode.
73+
Switch the Workbench to **Preview** mode.
7474

7575
:::image type="content" source="../../../images/viva-extensibility/lab1-preview.png" alt-text="Set the workbench to preview mode":::
7676

@@ -104,7 +104,7 @@ protected renderCard(): string | undefined {
104104
}
105105
```
106106

107-
The `renderCard()` method is `virtual` that returns a string identifier to a registered view; more on view registration later. This method is invoked during the **initial** render of the Card view.
107+
The `renderCard()` method is `virtual` that returns a string identifier to a registered View; more on View registration later. This method is invoked during the **initial** render of the Card view.
108108

109109
If `renderCard()` isn't overridden, then a default Card view will be rendered.
110110

@@ -256,7 +256,7 @@ public get onCardSelection(): IQuickViewCardAction | IExternalLinkCardAction | u
256256

257257
Selecting the Card will now open the Quick view.
258258

259-
### Quick Views
259+
### ACE Quick Views
260260

261261
Locate and open the following file: **./src/adaptiveCardExtensions/helloWorld/quickView/QuickView.ts**.
262262

0 commit comments

Comments
 (0)