From 9ecc8977a0077ea6f2d292a2ee940d938857b84b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20P=C3=B6mp?= Date: Fri, 29 Sep 2023 20:39:34 +0200 Subject: [PATCH] refactor(octra): update ngx-jodit version --- .../app/core/shared/multi-threading/ts-worker.ts | 2 +- libs/web-media/package.json | 2 +- package-lock.json | 14 +++++++------- package.json | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/apps/octra/src/app/core/shared/multi-threading/ts-worker.ts b/apps/octra/src/app/core/shared/multi-threading/ts-worker.ts index 122436795..e65efb706 100644 --- a/apps/octra/src/app/core/shared/multi-threading/ts-worker.ts +++ b/apps/octra/src/app/core/shared/multi-threading/ts-worker.ts @@ -78,7 +78,7 @@ export class TsWorker { if (this.getRunningJobID() < 0) { // no job running, start first job const job = this.getFirstFreeJob(); - if (!(job === undefined || job === undefined)) { + if (!(job === undefined || job === null)) { job.changeStatus(TsWorkerStatus.RUNNING); this.run(this._queue[0]) .then((result: any) => { diff --git a/libs/web-media/package.json b/libs/web-media/package.json index 3c7e26a0f..34af2defe 100644 --- a/libs/web-media/package.json +++ b/libs/web-media/package.json @@ -1,6 +1,6 @@ { "name": "@octra/web-media", - "version": "0.0.5", + "version": "0.0.6", "peerDependencies": { "rxjs": "^7.6.0", "platform": "^1.3.6", diff --git a/package-lock.json b/package-lock.json index e7e6e5f00..4b9b22653 100644 --- a/package-lock.json +++ b/package-lock.json @@ -48,7 +48,7 @@ "luxon": "^3.0.4", "modernizr": "^3.12.0", "ngrx-wieder": "^11.0.0", - "ngx-jodit": "^1.0.7", + "ngx-jodit": "^1.0.8", "ngx-webstorage": "^12.0.0", "node-ssh": "^13.0.0", "platform": "^1.3.6", @@ -16675,9 +16675,9 @@ } }, "node_modules/ngx-jodit": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/ngx-jodit/-/ngx-jodit-1.0.7.tgz", - "integrity": "sha512-RIx7/vuoG4Ij+PoN1mRNIbF5OFUPjHk1TQehD2xD3ILMs4692mlaTgiAEFpdmCrya8hALtqu9LH8ieMojnh4iQ==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/ngx-jodit/-/ngx-jodit-1.0.8.tgz", + "integrity": "sha512-/B8NsptJP9Omab1B3PhmjG2JOteem1YjqYJWMwwP/OnXHTDRhPnP9sjuxCMA2P71qQPWEQ0MsP0Yo+RiJXvSlQ==", "dependencies": { "tslib": "^2.3.0" }, @@ -35359,9 +35359,9 @@ } }, "ngx-jodit": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/ngx-jodit/-/ngx-jodit-1.0.7.tgz", - "integrity": "sha512-RIx7/vuoG4Ij+PoN1mRNIbF5OFUPjHk1TQehD2xD3ILMs4692mlaTgiAEFpdmCrya8hALtqu9LH8ieMojnh4iQ==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/ngx-jodit/-/ngx-jodit-1.0.8.tgz", + "integrity": "sha512-/B8NsptJP9Omab1B3PhmjG2JOteem1YjqYJWMwwP/OnXHTDRhPnP9sjuxCMA2P71qQPWEQ0MsP0Yo+RiJXvSlQ==", "requires": { "tslib": "^2.3.0" } diff --git a/package.json b/package.json index 4742a95aa..8c0738dd1 100644 --- a/package.json +++ b/package.json @@ -80,7 +80,7 @@ "luxon": "^3.0.4", "modernizr": "^3.12.0", "ngrx-wieder": "^11.0.0", - "ngx-jodit": "^1.0.7", + "ngx-jodit": "^1.0.8", "ngx-webstorage": "^12.0.0", "node-ssh": "^13.0.0", "platform": "^1.3.6",