Skip to content

Commit

Permalink
HPCC-32172 ECL Playground results flickering
Browse files Browse the repository at this point in the history
Flipping between scroll and no scroll

Signed-off-by: Gordon Smith <[email protected]>
  • Loading branch information
GordonSmith committed Jun 28, 2024
1 parent 95c82e6 commit ce48f75
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions esp/src/src-react/components/ECLPlayground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -512,18 +512,18 @@ export const ECLPlayground: React.FunctionComponent<ECLPlaygroundProps> = (props
</ReflexContainer>
</ReflexElement>
<ReflexSplitter />
<ReflexElement propagateDimensions={true} minSize={100}>
{outputMode === OutputMode.ERRORS ? (
<InfoGrid wuid={workunit?.Wuid} syntaxErrors={syntaxErrors} />
<ReflexElement propagateDimensions={true} minSize={100} style={{ overflow: "hidden" }}>
<div style={{ height: "calc(100% - 44px)" }}>
{outputMode === OutputMode.ERRORS ? (
<InfoGrid wuid={workunit?.Wuid} syntaxErrors={syntaxErrors} />

) : outputMode === OutputMode.RESULTS ? (
<TabbedResults wuid={workunit?.Wuid} filter={filter} />
) : outputMode === OutputMode.RESULTS ? (
<TabbedResults wuid={workunit?.Wuid} filter={filter} />

) : outputMode === OutputMode.VIS ? (
<div style={{ height: "calc(100% - 25px)" }}>
) : outputMode === OutputMode.VIS ? (
<DojoAdapter widgetClassID="VizWidget" params={{ Wuid: workunit?.Wuid, Sequence: 0 }} />
</div>
) : null}
) : null}
</div>
</ReflexElement>
</ReflexContainer>
</div>;
Expand Down

0 comments on commit ce48f75

Please sign in to comment.