@equinor/fusion-framework-module-app
Advanced tools
Comparing version 2.8.0 to 2.8.1
@@ -6,2 +6,8 @@ # Change Log | ||
## 2.8.1 (2022-12-21) | ||
### Bug Fixes | ||
- **module-app:** fix typo ([7db0811](https://github.com/equinor/fusion-framework/commit/7db08113697761ecfa75b5684272e6244ec9e137)) | ||
## 2.8.0 (2022-12-21) | ||
@@ -8,0 +14,0 @@ |
@@ -83,3 +83,3 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) { | ||
setCurrentApp(appKeyOrApp) { | ||
const app = typeof appKeyOrApp === 'string' ? this.createApp({ appKey: appKeyOrApp }) : App; | ||
const app = typeof appKeyOrApp === 'string' ? this.createApp({ appKey: appKeyOrApp }) : appKeyOrApp; | ||
__classPrivateFieldGet(this, _AppModuleProvider_current$, "f").next(app); | ||
@@ -86,0 +86,0 @@ } |
{ | ||
"name": "@equinor/fusion-framework-module-app", | ||
"version": "2.8.0", | ||
"version": "2.8.1", | ||
"description": "", | ||
@@ -48,3 +48,3 @@ "main": "dist/esm/index.js", | ||
}, | ||
"gitHead": "64e0a34ac2ada5860a003944b4e1326ad6bb25b8" | ||
"gitHead": "67ca85013eb60fc1a01c32502c044daa1e9eff3c" | ||
} |
@@ -151,3 +151,4 @@ import { | ||
public setCurrentApp(appKeyOrApp: string | App): void { | ||
const app = typeof appKeyOrApp === 'string' ? this.createApp({ appKey: appKeyOrApp }) : App; | ||
const app = | ||
typeof appKeyOrApp === 'string' ? this.createApp({ appKey: appKeyOrApp }) : appKeyOrApp; | ||
this.#current$.next(app as App); | ||
@@ -154,0 +155,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
248729
2055