diff --git a/packages/dashboard-core-plugins/src/panels/ConsolePanel.tsx b/packages/dashboard-core-plugins/src/panels/ConsolePanel.tsx index d1f2257060..da1a2d3062 100644 --- a/packages/dashboard-core-plugins/src/panels/ConsolePanel.tsx +++ b/packages/dashboard-core-plugins/src/panels/ConsolePanel.tsx @@ -4,6 +4,7 @@ import React, { PureComponent, ReactElement, RefObject } from 'react'; import shortid from 'shortid'; import debounce from 'lodash.debounce'; import { connect } from 'react-redux'; +import { LoadingOverlay } from '@deephaven/components'; import { CommandHistoryStorage, Console, @@ -377,7 +378,12 @@ export class ConsolePanel extends PureComponent< } = this.props; if (sessionWrapper == null) { - return null; + return ( + + ); } const { consoleSettings, error, objectMap } = this.state;