@chat21/chat21-ionic 3.4.16-rc2 → 3.4.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -1
- package/package.json +1 -1
- package/src/app/app.component.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
|
-
# **
|
|
1
|
+
# **CHAT21 IONIC - Changelog**
|
|
2
2
|
|
|
3
3
|
### **Authors**:
|
|
4
4
|
*Gabriele Panico* <br>
|
|
5
|
+
*Dario De Pascalis* <br>
|
|
6
|
+
*Giovanni Troisi* <br>
|
|
7
|
+
*Nicola Lanzilotto* <br>
|
|
5
8
|
### **Copyrigth**:
|
|
6
9
|
*Tiledesk SRL*
|
|
7
10
|
|
|
11
|
+
# 3.4.16 in PROD
|
|
12
|
+
|
|
8
13
|
# 3.4.16-rc2
|
|
9
14
|
- **changed**: minor UI improvement copilot header button
|
|
10
15
|
|
package/package.json
CHANGED
package/src/app/app.component.ts
CHANGED
|
@@ -1242,9 +1242,9 @@ export class AppComponent implements OnInit {
|
|
|
1242
1242
|
}
|
|
1243
1243
|
|
|
1244
1244
|
goToDashboardLogin(){
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1245
|
+
let DASHBOARD_URL = this.appConfigProvider.getConfig().dashboardUrl + '#/login'
|
|
1246
|
+
const myWindow = window.open(DASHBOARD_URL, '_self');
|
|
1247
|
+
myWindow.focus();
|
|
1248
1248
|
}
|
|
1249
1249
|
|
|
1250
1250
|
|