Skip to content
This repository was archived by the owner on Nov 6, 2025. It is now read-only.

Commit b875a49

Browse files
authored
Merge pull request #2173 from umbraco/v14/bugfix/version-property-name
correct name
2 parents 042a27b + 098b1b2 commit b875a49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/apps/backoffice/backoffice.context.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ export class UmbBackofficeContext extends UmbContextBase<UmbBackofficeContext> {
1919
#allowedSections = new UmbBasicState<Array<UmbExtensionManifestInitializer<ManifestSection>>>([]);
2020
public readonly allowedSections = this.#allowedSections.asObservable();
2121

22-
#verison = new UmbStringState(undefined);
23-
public readonly version = this.#verison.asObservable();
22+
#version = new UmbStringState(undefined);
23+
public readonly version = this.#version.asObservable();
2424

2525
constructor(host: UmbControllerHost) {
2626
super(host, UMB_BACKOFFICE_CONTEXT);
@@ -70,7 +70,7 @@ export class UmbBackofficeContext extends UmbContextBase<UmbBackofficeContext> {
7070
) ?? [];
7171

7272
const version = [major, minor, patch].join('.') + (prerelease ? `-${prerelease}` : '');
73-
this.#verison.setValue(version);
73+
this.#version.setValue(version);
7474
}
7575

7676
public setActiveSectionAlias(alias: string) {

0 commit comments

Comments
 (0)