[MM-55098] Replace usage of LocalizedIcon in 'channel_info_rhs/header.tsx' with i/span tags (#25179)

* Replaced LocalizedIcon with i tag

* Replaced aria-label in parent button tag and removed it from i tag

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
Этот коммит содержится в:
Bishal Pal
2023-10-28 13:48:30 +05:30
коммит произвёл GitHub
родитель 5d163d3ae0
Коммит 76673606c7
2 изменённых файлов: 5 добавлений и 7 удалений

Просмотреть файл

@@ -34,7 +34,7 @@ describe('channel_info_rhs/header', () => {
/>,
);
fireEvent.click(screen.getByLabelText('Close'));
fireEvent.click(screen.getByLabelText('Close Sidebar Icon'));
expect(onClose).toHaveBeenCalled();
});

Просмотреть файл

@@ -2,17 +2,15 @@
// See LICENSE.txt for license information.
import React from 'react';
import {FormattedMessage} from 'react-intl';
import {FormattedMessage, useIntl} from 'react-intl';
import styled from 'styled-components';
import type {Channel} from '@mattermost/types/channels';
import LocalizedIcon from 'components/localized_icon';
import OverlayTrigger from 'components/overlay_trigger';
import Tooltip from 'components/tooltip';
import Constants from 'utils/constants';
import {t} from 'utils/i18n';
interface Props {
channel: Channel;
@@ -35,6 +33,7 @@ const HeaderTitle = styled.span`
`;
const Header = ({channel, isArchived, isMobile, onClose}: Props) => {
const {formatMessage} = useIntl();
const closeSidebarTooltip = (
<Tooltip id='closeSidebarTooltip'>
<FormattedMessage
@@ -86,12 +85,11 @@ const Header = ({channel, isArchived, isMobile, onClose}: Props) => {
id='rhsCloseButton'
type='button'
className='sidebar--right__close btn btn-icon btn-sm'
aria-label='Close'
aria-label={formatMessage({id: 'rhs_header.closeTooltip.icon', defaultMessage: 'Close Sidebar Icon'})}
onClick={onClose}
>
<LocalizedIcon
<i
className='icon icon-close'
ariaLabel={{id: t('rhs_header.closeTooltip.icon'), defaultMessage: 'Close Sidebar Icon'}}
/>
</button>
</OverlayTrigger>