diff --git a/CHANGELOG.md b/CHANGELOG.md index 98290270ef66..793cfe415ecd 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,28 @@ # tiledesk-dashboard -### 2.6.18 +### 2.6.20-rc1 +- Implements on the "Monitor" page the scroll position restoration + +### 2.6.19 - Deploys in production - Improves the Community page UI +### 2.6.18 +- Deploys in production +- Hides the External chatbot learn more button if the DOCS key is set to false +- Fixes the bug: Chatbot limit does not work when set to 0 +- Refactors the home page UI for teammates with agent role +- Adds the lazy loading to the "HomeGoToChatComponent" and "ChatbotAlertComponent" components +- Improves chatbots and knowledge bases management set via DB +- Other improvements and bug fixing + +### 2.6.18-rc1 +- Hides the External chatbot learn more button if the DOCS key is set to false +- Fixes the bug: Chatbot limit does not work when set to 0 +- Refactors the home page UI for teammates with agent role +- Adds the lazy loading to the "HomeGoToChatComponent" and "ChatbotAlertComponent" components +- Improves chatbots and knowledge bases management via DB + ### 2.6.17 - Deploys in production - Fixes the bug: Agents can't edit requester information @@ -16,6 +35,9 @@ - Deploys in production - Improves performance and bug fixing +### 2.6.15-rc1 +- Improves performance and bug fixing + ### 2.6.14 - Deploys in production - Improves performance and bug fixing @@ -110,8 +132,18 @@ - Adds the customer.io integration - Fixes the bug: app cards are not all the same height -### 2.6.0-rc6 -- Fixes the bug: App cards are not of the same height +### 2.5.21 +- Deploys in production +- Adds the ability to sort chatbot by name + +### 2.5.20 +- Deploys in production +- Refactors the teammates table + +### 2.5.19 +- Deploys in production +- Fixes the bug: not all chatbot images are displayed +- Fixes the bug: published chatbots is appearing as a draft ### 2.6.0-rc4 - Improves Knowledge Base diff --git a/package-lock.json b/package-lock.json index 02ad4415ba50..2c08abc82f82 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@tiledesk/tiledesk-dashboard", - "version": "2.6.18", + "version": "2.6.20-rc1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 55ad8619114a..83ad1c04c648 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tiledesk/tiledesk-dashboard", - "version": "2.6.18", + "version": "2.6.20-rc1", "scripts": { "ng": "ng", "start": "ng serve --aot", diff --git a/src/app/projects/projects.component.ts b/src/app/projects/projects.component.ts index 243d17081625..6379daca852f 100755 --- a/src/app/projects/projects.component.ts +++ b/src/app/projects/projects.component.ts @@ -156,6 +156,7 @@ export class ProjectsComponent implements OnInit, AfterContentInit, OnDestroy { this.unsubscribe$.next(); this.unsubscribe$.complete(); } + getRouteParams() { this.route.queryParams.subscribe((params) => { this.logger.log('[PROJECTS] - GET ROUTE-PARAMS & APPID - params: ', params)