diff --git a/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue b/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue index 60b2f413a..49962ece0 100644 --- a/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue +++ b/app/javascript/dashboard/components/widgets/WootWriter/ReplyBottomPanel.vue @@ -220,11 +220,7 @@ export default { : this.$t('CONVERSATION.FOOTER.ENABLE_SIGN_TOOLTIP'); }, enableInsertArticleInReply() { - const isFeatEnabled = this.isFeatureEnabledonAccount( - this.accountId, - FEATURE_FLAGS.INSERT_ARTICLE_IN_REPLY - ); - return isFeatEnabled && this.portalSlug; + return this.portalSlug; }, isFetchingAppIntegrations() { return this.uiFlags.isFetching; @@ -403,6 +399,7 @@ export default { label { @apply cursor-pointer; } + &:hover button { @apply dark:bg-slate-800 bg-slate-100; } diff --git a/app/javascript/dashboard/featureFlags.js b/app/javascript/dashboard/featureFlags.js index 54b560ed7..73b3ac177 100644 --- a/app/javascript/dashboard/featureFlags.js +++ b/app/javascript/dashboard/featureFlags.js @@ -16,7 +16,6 @@ export const FEATURE_FLAGS = { TEAM_MANAGEMENT: 'team_management', VOICE_RECORDER: 'voice_recorder', AUDIT_LOGS: 'audit_logs', - INSERT_ARTICLE_IN_REPLY: 'insert_article_in_reply', INBOX_VIEW: 'inbox_view', SLA: 'sla', RESPONSE_BOT: 'response_bot',