Skip to content

Commit e9b1df2

Browse files
committed
Update implement-your-own-segment-parameters.md
- Update image - Minor changes
1 parent 3e05655 commit e9b1df2

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed
-8.71 KB
Loading

16/umbraco-engage/developers/profiling/external-profile-data.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ If you want to use external data in a custom segment you have to write the data
1414

1515
## Visualization
1616

17-
It is possible to visualize this external data alongside the Umbraco Engage profile in the backoffice by providing a custom `AngularJS` component for this purpose.
17+
It is possible to visualize this external data alongside the Umbraco Engage profile in the backoffice by providing a custom Web component for this purpose.
1818

1919
When this component is registered a new tab will be rendered in the Profiles section when viewing profile details. This will render the custom component that was provided and get passed the Umbraco Engage visitor ID.
2020

@@ -38,8 +38,15 @@ export class EngageProfileInsightElement extends UmbLitElement {
3838
}
3939
render() {
4040
return html`
41-
<h1>This is a custom external profile data element</h1>
42-
<p>Current profile id: ${this.#profileId}</p>`;
41+
<table>
42+
<tr>
43+
<td>This is a custom profile insight element</td>
44+
</tr>
45+
<tr>
46+
<td>Current profile id: ${this.#profileId}</td>
47+
</tr>
48+
</table>
49+
`;
4350
}
4451
}
4552
export { EngageProfileInsightElement as element }
@@ -52,7 +59,7 @@ Then, load your component using a `manifest.ts` file. The extension type must be
5259
{
5360
"type": "engageExternalDataComponent",
5461
"alias": "EngageDemo.ExternalProfileData",
55-
"name": "External Profile Data Demo",
62+
"name": "External Data Demo",
5663
"weight": 100,
5764
"js": "/path/to/my-javascript.js"
5865
}

0 commit comments

Comments
 (0)