diff --git a/CHANGELOG.md b/CHANGELOG.md index c94e7252e7c7..d629cf920f88 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # tiledesk-dashboard +### 2.4.78 +- Deploys in production +- Adds the ability to select the "Business Owner" role in the first step of onboarding + ### 2.4.77 - Deploys in production - Fixes the bug: unable to update intent due to missing "id_faq_kb" parameter in PUT API call diff --git a/package-lock.json b/package-lock.json index c19758b5aec9..a4d37e09ae68 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@tiledesk/tiledesk-dashboard", - "version": "2.4.77", + "version": "2.4.78", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 31768f73203a..6ad601e1e7b4 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tiledesk/tiledesk-dashboard", - "version": "2.4.77", + "version": "2.4.78", "scripts": { "ng": "ng", "start": "ng serve --aot", diff --git a/src/app/create-new-project/cnp-templates/cnp-templates.component.html b/src/app/create-new-project/cnp-templates/cnp-templates.component.html index 0cf20e5cff03..49517255b027 100644 --- a/src/app/create-new-project/cnp-templates/cnp-templates.component.html +++ b/src/app/create-new-project/cnp-templates/cnp-templates.component.html @@ -122,15 +122,14 @@

-
{{ 'ImportChatbot' | translate}}
{{ 'Or' | translate}}
- diff --git a/src/app/create-new-project/cnp-templates/cnp-templates.component.scss b/src/app/create-new-project/cnp-templates/cnp-templates.component.scss index 89da62ac4b7f..245ad5a8e345 100644 --- a/src/app/create-new-project/cnp-templates/cnp-templates.component.scss +++ b/src/app/create-new-project/cnp-templates/cnp-templates.component.scss @@ -314,13 +314,11 @@ $color-pro-plan: #3ea9f5; .template-preview-card-import-and-start-from-scratch { height: 100%; - // background: antiquewhite; display: flex; align-items: center; justify-content: center; - font-size: 18px; - font-weight: 500; - // + font-size: 16px; + font-weight: 400; gap: 6px } diff --git a/src/app/create-new-project/cnp-templates/cnp-templates.component.ts b/src/app/create-new-project/cnp-templates/cnp-templates.component.ts index 94a83d8e0757..157cbec578ce 100644 --- a/src/app/create-new-project/cnp-templates/cnp-templates.component.ts +++ b/src/app/create-new-project/cnp-templates/cnp-templates.component.ts @@ -105,7 +105,7 @@ export class CnpTemplatesComponent implements OnInit, AfterViewInit, OnChanges { this.projectid = this.updatedProject._id // console.log('[CNP-TEMPLATES] - updatedProject > projectid', this.projectid) - if (userPreferences.user_role === 'developer' || userPreferences.user_role === 'conversation_designer' || userPreferences.user_role === 'no_code_builder' || userPreferences.user_role === 'business_stakeholder') { + if (userPreferences.user_role === 'business_owner'|| userPreferences.user_role === 'developer' || userPreferences.user_role === 'conversation_designer' || userPreferences.user_role === 'no_code_builder' || userPreferences.user_role === 'business_stakeholder') { this.DIPLAY_CUSTOM_SUBTITLE = false; const userRole = this.translate.instant(userPreferences.user_role)