Fixed header resizing (#7787)
This commit is contained in:
parent
c84844e905
commit
7159119329
|
|
@ -59,7 +59,6 @@ import { EditorSaveIndicator } from "./EditorSaveIndicator";
|
||||||
import getFeatureFlags from "utils/featureFlags";
|
import getFeatureFlags from "utils/featureFlags";
|
||||||
import { getIsInOnboarding } from "selectors/onboardingSelectors";
|
import { getIsInOnboarding } from "selectors/onboardingSelectors";
|
||||||
import { retryPromise } from "utils/AppsmithUtils";
|
import { retryPromise } from "utils/AppsmithUtils";
|
||||||
import Skeleton from "components/utils/Skeleton";
|
|
||||||
|
|
||||||
const HeaderWrapper = styled(StyledHeader)`
|
const HeaderWrapper = styled(StyledHeader)`
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
@ -350,7 +349,7 @@ export function EditorHeader(props: EditorHeaderProps) {
|
||||||
)}
|
)}
|
||||||
</HeaderSection>
|
</HeaderSection>
|
||||||
{props.inOnboarding && <OnboardingHelper />}
|
{props.inOnboarding && <OnboardingHelper />}
|
||||||
<Suspense fallback={<Skeleton />}>
|
<Suspense fallback={<span />}>
|
||||||
<GlobalSearch />
|
<GlobalSearch />
|
||||||
</Suspense>
|
</Suspense>
|
||||||
{isSnipingMode && (
|
{isSnipingMode && (
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user