fix: Remove feature flag for insert article into editor (#10114)

Fixes #10107
This commit is contained in:
Pranav
2024-09-16 12:25:49 +05:30
committed by GitHub
parent 8d8ec23aa1
commit 73d448a203
2 changed files with 2 additions and 6 deletions

View File

@@ -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;
}

View File

@@ -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',