{{ additionalAttributes.description }}
@@ -294,19 +301,20 @@ export default { text-align: left; } +.contact--name-wrap { + display: flex; + align-items: center; + margin-bottom: var(--space-small); +} + .contact--name { text-transform: capitalize; white-space: normal; + margin: 0 var(--space-smaller) 0 0; a { color: var(--color-body); } - - .open-link--icon { - color: var(--color-body); - font-size: var(--font-size-small); - margin-left: var(--space-smaller); - } } .contact--metadata { diff --git a/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue b/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue index cb61c2f97..79acdfef2 100644 --- a/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue +++ b/app/javascript/dashboard/routes/dashboard/settings/inbox/Settings.vue @@ -215,6 +215,25 @@ + + @@ -420,6 +439,7 @@ export default { emailCollectEnabled: false, isAgentListUpdating: false, csatSurveyEnabled: false, + allowMessagesAfterResolved: true, selectedInboxName: '', channelWebsiteUrl: '', webhookUrl: '', @@ -583,6 +603,7 @@ export default { this.autoAssignment = this.inbox.enable_auto_assignment; this.emailCollectEnabled = this.inbox.enable_email_collect; this.csatSurveyEnabled = this.inbox.csat_survey_enabled; + this.allowMessagesAfterResolved = this.inbox.allow_messages_after_resolved; this.channelWebsiteUrl = this.inbox.website_url; this.channelWelcomeTitle = this.inbox.welcome_title; this.channelWelcomeTagline = this.inbox.welcome_tagline; @@ -625,6 +646,7 @@ export default { enable_auto_assignment: this.autoAssignment, enable_email_collect: this.emailCollectEnabled, csat_survey_enabled: this.csatSurveyEnabled, + allow_messages_after_resolved: this.allowMessagesAfterResolved, greeting_enabled: this.greetingEnabled, greeting_message: this.greetingMessage || '', channel: { diff --git a/app/javascript/shared/components/FluentIcon/DashboardIcon.vue b/app/javascript/shared/components/FluentIcon/DashboardIcon.vue index c07b9a180..b695aaaa7 100644 --- a/app/javascript/shared/components/FluentIcon/DashboardIcon.vue +++ b/app/javascript/shared/components/FluentIcon/DashboardIcon.vue @@ -1,19 +1,15 @@ - +