Fix swapped order of "accept/reject" actions in follow requests (#39862)
This commit is contained in:
parent
99cecbe6f3
commit
508405c31a
@ -61,18 +61,18 @@ export const NotificationFollowRequest: React.FC<{
|
|||||||
|
|
||||||
const actions = (
|
const actions = (
|
||||||
<>
|
<>
|
||||||
<IconButton
|
|
||||||
title={intl.formatMessage(messages.reject)}
|
|
||||||
icon='times'
|
|
||||||
iconComponent={CloseIcon}
|
|
||||||
onClick={onReject}
|
|
||||||
/>
|
|
||||||
<IconButton
|
<IconButton
|
||||||
title={intl.formatMessage(messages.authorize)}
|
title={intl.formatMessage(messages.authorize)}
|
||||||
icon='check'
|
icon='check'
|
||||||
iconComponent={CheckIcon}
|
iconComponent={CheckIcon}
|
||||||
onClick={onAuthorize}
|
onClick={onAuthorize}
|
||||||
/>
|
/>
|
||||||
|
<IconButton
|
||||||
|
title={intl.formatMessage(messages.reject)}
|
||||||
|
icon='times'
|
||||||
|
iconComponent={CloseIcon}
|
||||||
|
onClick={onReject}
|
||||||
|
/>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user