lint.
Этот коммит содержится в:
@@ -68,11 +68,11 @@ const EnterpriseEditionLeftPanel = ({
|
||||
useEffect(() => {
|
||||
console.log(actionQueryParam);
|
||||
if (actionQueryParam === 'show_expansion_modal' && canExpand && isSelfHostedExpansionEnabled) {
|
||||
console.log("Open modal!");
|
||||
console.log('Open modal!');
|
||||
selfHostedExpansionModal.open();
|
||||
query.set('action', '');
|
||||
}
|
||||
}, [])
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
async function fetchUnSanitizedLicense() {
|
||||
|
||||
@@ -103,7 +103,7 @@ const OverageUsersBannerNotice = () => {
|
||||
const handleClick = () => {
|
||||
trackEventFn(isExpandable ? 'Self Serve' : 'Contact Sales');
|
||||
if (isExpandable) {
|
||||
selfHostedExpansionModal.open()
|
||||
selfHostedExpansionModal.open();
|
||||
}
|
||||
};
|
||||
|
||||
@@ -120,7 +120,7 @@ const OverageUsersBannerNotice = () => {
|
||||
>
|
||||
{cta}
|
||||
</NavLink>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
|
||||
@@ -519,7 +519,9 @@ export default function SelfHostedExpansionModal() {
|
||||
{formState.error && (
|
||||
<ErrorPage
|
||||
canRetry={canRetry}
|
||||
tryAgain={() => {setFormState({...formState, submitting: false, error: ''})}}
|
||||
tryAgain={() => {
|
||||
setFormState({...formState, submitting: false, error: ''});
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
<div className='background-svg'>
|
||||
|
||||
Ссылка в новой задаче
Block a user