Skip to content

Commit 759fe29

Browse files
committed
Formatting
1 parent 9ed2f75 commit 759fe29

File tree

1 file changed

+2
-2
lines changed
  • 16/umbraco-cms/customizing/extending-overview/extension-types

1 file changed

+2
-2
lines changed

16/umbraco-cms/customizing/extending-overview/extension-types/header-apps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Place single-purpose extensions in the top-level navigation bar, ne
44

55
# Header Apps
66

7-
Header apps appear next to the user profile and the global search icon in the top right of Umbraco’s Backoffice. Extension authors can create custom header apps to add globally accessible functionality to the Backoffice.
7+
Header App extensions appear next to the user profile and the global search icon in the top right of Umbraco’s Backoffice. Extension authors can create custom header apps to add globally accessible functionality to the Backoffice.
88

99
<figure><img src="../../../.gitbook/assets/header-apps.svg" alt=""><figcaption><p>Header Apps</p></figcaption></figure>
1010

@@ -103,6 +103,7 @@ In order for a header app to have some functionality, extension authors will nee
103103
{% endtab %}
104104
{% tab title="TypeScript" %}
105105
{% code title="src/server-services-header.ts" lineNumbers="true" %}
106+
*This example assumes that the extension author has transpiled the above TypeScript code into a JavaScript file. The name and location of this file should match the `element` property in the manifest.*
106107
```typescript
107108
import { html, customElement } from "@umbraco-cms/backoffice/external/lit";
108109
import { UmbHeaderAppButtonElement } from "@umbraco-cms/backoffice/components";
@@ -145,6 +146,5 @@ export class ServerServicesHeaderAppElement extends UmbHeaderAppButtonElement {
145146
export default ServerServicesHeaderAppElement;
146147
```
147148
{% endcode %}
148-
*This example assumes that the extension author has transpiled the above TypeScript code into a JavaScript file. The name and location of this file should match the `element` property in the manifest.*
149149
{% endtab %}
150150
{% endtabs %}

0 commit comments

Comments
 (0)