Commit 5703523 Trey Ivy
committed
1 parent e7df45b commit 5703523 Copy full SHA for 5703523
File tree 1 file changed +0
-16
lines changed
frontend/src/components/Problems/LogOutput
1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -21,22 +21,6 @@ const DEFAULT_TAIL_BYTES = 10_000;
21
21
22
22
/* eslint-disable consistent-return */
23
23
const LogOutput : React . FC < Props > = ( { blobReference, tailBytes = DEFAULT_TAIL_BYTES } ) => {
24
- // if (blobReference.ephemeralURL != "" && env('NEXT_PUBLIC_BROWSER_URL')) {
25
- // const url = new URL(blobReference.ephemeralURL, env('NEXT_PUBLIC_BROWSER_URL'))
26
- // var logDownload = <Space direction="horizontal" size="small">
27
- // <Card>
28
- // <ButtonGroup>
29
- // <Button>
30
- // <DownloadOutlined/>
31
- // <Link href={url.toString()} download="test.log" target="_self">Download Log File</Link>
32
- // </Button>
33
- // <Tooltip title="Depending on the configuration of your remote cache, this link may point to ephemeral content and it could disappear.">
34
- // <Button icon={<WarningOutlined/>} danger/>
35
- // </Tooltip>
36
- // </ButtonGroup>
37
- // </Card>
38
- // </Space>
39
- // }
40
24
const [ contents , setContents ] = useState < string > ( "" ) ;
41
25
useEffect ( ( ) => {
42
26
fetch ( blobReference . downloadURL , {
You can’t perform that action at this time.
0 commit comments