{description &&
{description}}
{isProject ? (
{this.renderSearchInput({
placeholder: t('Search Projects'),
url: `/projects/?organizationId=${orgId}`,
stateKey,
})}
) : (
{t('Organizations')}
)}
{/* Only email needs the form to change the emmail */}
{fineTuneType === 'email' && emailsByProject ? (
) : (
mainContent
)}
{projects && (hasMore || hasPrevious) && (
)}
);
}
}
const Heading = styled('div')`
flex: 1;
`;
const StyledPanelHeader = styled(PanelHeader)`
flex-wrap: wrap;
gap: ${space(1)};
& > form:last-child {
flex-grow: 1;
}
`;
export default withOrganizations(AccountNotificationFineTuning);