Skip to content

Commit

Permalink
### 3.2.2 in PROD
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Panico committed Mar 21, 2024
1 parent e279fe9 commit 08a4202
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# chat21-ionic ver 3.0

### 3.2.2 in PROD
- 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

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@chat21/chat21-ionic",
"author": "Tiledesk SRL",
"version": "3.2.1",
"version": "3.2.2",
"license": "MIT License",
"homepage": "https://tiledesk.com/",
"repository": {
Expand Down
5 changes: 3 additions & 2 deletions src/app/pages/conversations-list/conversations-list.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,14 +274,15 @@ export class ConversationListPage implements OnInit {
// }
this.logger.log('[CONVS-LIST-PAGE] - HAS CLIKED OPEN UNSERVED REQUEST IFRAME',this.hasClickedOpenUnservedConvIframe )
const DASHBOARD_BASE_URL = this.appConfigProvider.getConfig().dashboardUrl
const tiledeskToken = this.tiledeskAuthService.getTiledeskToken();
// http://localhost:4204/#/projects-for-panel
this.PROJECTS_FOR_PANEL_URL = DASHBOARD_BASE_URL + '#/projects-for-panel'
this.UNASSIGNED_CONVS_URL = DASHBOARD_BASE_URL + '#/project/' + this.lastProjectId + '/unserved-request-for-panel'

if (event.event === 'pinbtn') {
this.IFRAME_URL = this.PROJECTS_FOR_PANEL_URL
this.IFRAME_URL = this.PROJECTS_FOR_PANEL_URL + '?token='+ tiledeskToken
} else {
this.IFRAME_URL = this.UNASSIGNED_CONVS_URL
this.IFRAME_URL = this.UNASSIGNED_CONVS_URL + '?token='+ tiledeskToken
}
this.logger.log('[CONVS-LIST-PAGE] - HAS CLIKED OPEN UNSERVED REQUEST IFRAME > UNASSIGNED CONVS URL',this.UNASSIGNED_CONVS_URL )
this.openUnassignedConversations(this.IFRAME_URL, event)
Expand Down

0 comments on commit 08a4202

Please sign in to comment.