We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e078068 commit 9298b4cCopy full SHA for 9298b4c
src/components/v2/appDetails/k8Resource/nodeDetail/nodeDetail.api.ts
@@ -192,10 +192,9 @@ export const downloadLogs = async (
192
.then(async (response) => {
193
try {
194
if(response.status === 204){
195
- toast.error(response.statusText)
+ toast.error('No logs found')
196
return;
197
}
198
- console.log('response', response)
199
const data = await (response as any).blob()
200
// Create a new URL object
201
const blobUrl = URL.createObjectURL(data)
0 commit comments