From dc356a479d8ea8c2bdd2b28f1ef71df348923655 Mon Sep 17 00:00:00 2001 From: Gabriele Panico Date: Tue, 2 Apr 2024 16:35:05 +0200 Subject: [PATCH] ### 3.2.3-rc.1 --- CHANGELOG.md | 7 +++++++ package-lock.json | 2 +- package.json | 2 +- src/app/app.component.ts | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dda06f53..89bda1f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,15 @@ # chat21-ionic ver 3.0 +### 3.2.3-rc.1 +- added: redirect to dashboard Login page in case of login error +- added: condition for docs + ### 3.2.2 in PROD - bug-fixed: unassigned url not logged-in as well +### 3.2.2-rc.1 +- bug-fixed: unassigned url not logged-in as well + ### 3.2.1 in PROD - bug-fixed: cannot read property of undefined reading logger.error into brand-service.ts diff --git a/package-lock.json b/package-lock.json index ed38aae8..5caf41c1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@chat21/chat21-ionic", - "version": "3.2.2", + "version": "3.2.3-rc.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 66e1109b..625f67af 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@chat21/chat21-ionic", "author": "Tiledesk SRL", - "version": "3.2.2", + "version": "3.2.3-rc.1", "license": "MIT License", "homepage": "https://tiledesk.com/", "repository": { diff --git a/src/app/app.component.ts b/src/app/app.component.ts index b7a7b75b..a2211973 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -1220,8 +1220,8 @@ export class AppComponent implements OnInit { goToDashboardLogin(){ let DASHBOARD_URL = this.appConfigProvider.getConfig().dashboardUrl + '#/login' - // const myWindow = window.open(DASHBOARD_URL, '_self'); - // myWindow.focus(); + const myWindow = window.open(DASHBOARD_URL, '_self'); + myWindow.focus(); }