1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Use container name as downloaded file name

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2023-03-27 11:15:27 +03:00
parent 8dc0177cb2
commit b7f64c2638

View File

@ -25,7 +25,7 @@ const downloadAllLogsInjectable = getInjectable({
}); });
if (logs) { if (logs) {
openSaveFileDialog(`${params.name}.log`, logs, "text/plain"); openSaveFileDialog(`${query.container}.log`, logs, "text/plain");
} else { } else {
showErrorNotification("No logs to download"); showErrorNotification("No logs to download");
} }