Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing reference to text in docs #11

Merged
merged 1 commit into from Mar 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/porting-embed.md
Expand Up @@ -162,6 +162,8 @@ See also:

The embed ships with default text in english, but you can override any text that is rendered by the embed, if you want to support a different language or customize the text otherwise.

You don't have to provide all text overrides. Your overrides will be merged into the default text.

```js
const embed = await PortingEmbed(session, {
options: {
Expand All @@ -177,6 +179,9 @@ const embed = await PortingEmbed(session, {
})
```

See also:
- [Text](#text) for a list of all text overrides.

### Continue after all fields were filled out

When the user entered all fields in all steps of the wizard, the embed will not render any UI anymore. You can handle this in your app by listening for the `completed` event.
Expand Down