File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
resources/scripts/components/server Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import ServerDetailsBlock from '@/components/server/ServerDetailsBlock';
99import isEqual from 'react-fast-compare' ;
1010import PowerControls from '@/components/server/PowerControls' ;
1111import { EulaModalFeature } from '@feature/index' ;
12+ import ErrorBoundary from '@/components/elements/ErrorBoundary' ;
1213
1314export type PowerAction = 'start' | 'stop' | 'restart' | 'kill' ;
1415
@@ -51,7 +52,9 @@ const ServerConsole = () => {
5152 </ div >
5253 < div css = { tw `w-full lg:w-3/4 mt-4 lg:mt-0 lg:pl-4` } >
5354 < SuspenseSpinner >
54- < ChunkedConsole />
55+ < ErrorBoundary >
56+ < ChunkedConsole />
57+ </ ErrorBoundary >
5558 < ChunkedStatGraphs />
5659 </ SuspenseSpinner >
5760 { eggFeatures . includes ( 'eula' ) &&
You can’t perform that action at this time.
0 commit comments