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