diff --git a/libs/components/src/lib/components/ChannelSetting/Component/OverviewChannel/index.tsx b/libs/components/src/lib/components/ChannelSetting/Component/OverviewChannel/index.tsx index d3c5ce371f..9ec1beeada 100644 --- a/libs/components/src/lib/components/ChannelSetting/Component/OverviewChannel/index.tsx +++ b/libs/components/src/lib/components/ChannelSetting/Component/OverviewChannel/index.tsx @@ -15,7 +15,7 @@ import { useAppSelector } from '@mezon/store'; import { Icons, Image, InputField, TextArea } from '@mezon/ui'; -import { checkIsThread, IChannel, ValidateSpecialCharacters, ValidateURL } from '@mezon/utils'; +import { checkIsThread, generateE2eId, IChannel, ValidateSpecialCharacters, ValidateURL } from '@mezon/utils'; import { unwrapResult } from '@reduxjs/toolkit'; import { ModalSaveChanges } from 'libs/components/src/lib/components'; import Dropdown from 'libs/ui/src/lib/DropDown'; @@ -304,7 +304,7 @@ const OverviewChannel = (props: OverviewChannelProps) => { return (
-
+

{t('overview.title')}

{isThread ? t('fields.threadName.title') : t('fields.channelName.title')}

void; @@ -16,6 +17,7 @@ const ExitSetting = (props: ModalExitProps) => {
diff --git a/libs/utils/src/lib/e2e-testing/constants.ts b/libs/utils/src/lib/e2e-testing/constants.ts index b3ba88a3b4..df49c747a3 100644 --- a/libs/utils/src/lib/e2e-testing/constants.ts +++ b/libs/utils/src/lib/e2e-testing/constants.ts @@ -155,6 +155,9 @@ export const DATA_E2E_IDENTIFIER = { } }, settings: { + button: { + exit: '' + }, integrations: { create_clan_webhook_button: '', new_clan_webhook_button: '', @@ -224,6 +227,9 @@ export const DATA_E2E_IDENTIFIER = { }, panel: { item: '' + }, + settings: { + overview: '' } } },