fix: remove log
This commit is contained in:
parent
78a4c9f267
commit
b3a14aa539
1 changed files with 1 additions and 4 deletions
|
|
@ -134,10 +134,7 @@ const LogsDownloaderPopover = ({ name, query, args, title, getLogs }) => {
|
||||||
const [range, setRange] = useState({ from: null, until: null })
|
const [range, setRange] = useState({ from: null, until: null })
|
||||||
const [anchorEl, setAnchorEl] = useState(null)
|
const [anchorEl, setAnchorEl] = useState(null)
|
||||||
const [fetchLogs] = useLazyQuery(query, {
|
const [fetchLogs] = useLazyQuery(query, {
|
||||||
onCompleted: data => {
|
onCompleted: data => createLogsFile(getLogs(data), range)
|
||||||
console.log(data)
|
|
||||||
return createLogsFile(getLogs(data), range)
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
const classes = useStyles()
|
const classes = useStyles()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue