1
0
Fork 0

fix(gui): move pre tag into a valid location

This commit is contained in:
Sean Sube 2023-02-17 21:54:00 -06:00
parent cf8ca34845
commit aec44aaaeb
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 10 additions and 8 deletions

View File

@ -57,15 +57,17 @@ export function OnnxError(props: OnnxErrorProps) {
client state: client state:
</Typography> </Typography>
<Button onClick={clearState} color='error'>Reset State</Button> <Button onClick={clearState} color='error'>Reset State</Button>
<Typography variant='body1' gutterBottom> <Typography variant='body1'>
If your server is running and available at <a href={props.root}>{props.root}</a>, make sure you are on If your server is running and available at <a href={props.root}>{props.root}</a>, make sure you are using
the <code>main</code> branch and try updating to the latest version: a compatible client and try updating to the latest release or unstable version:
</Typography>
<pre> <pre>
&gt; git branch{'\n'} &gt; git branch{'\n'}
* main{'\n'} * main{'\n'}
{'\n'} {'\n'}
&gt; git pull{'\n'} &gt; git pull{'\n'}
</pre> </pre>
<Typography variant='body1' gutterBottom>
You can also use <a href='https://github.com/ssube/onnx-web/releases'>a recent release</a>. You can also use <a href='https://github.com/ssube/onnx-web/releases'>a recent release</a>.
</Typography> </Typography>
</Stack> </Stack>