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

Removing previous Download icon

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-08-02 11:09:56 +03:00
parent 356712cbe1
commit 175a1dc815

View File

@ -10,7 +10,6 @@ import { observer } from "mobx-react";
import { cssNames } from "../../../utils";
import { Checkbox } from "../../checkbox";
import { Icon } from "../../icon";
import type { LogTabViewModel } from "./logs-view-model";
import { withInjectables } from "@ogre-tools/injectable-react";
import openSaveFileDialogInjectable from "../../../utils/save-file.injectable";
@ -98,20 +97,6 @@ const NonInjectedLogControls = observer(({ openSaveFileDialog, model, callForAll
downloadVisibleLogs={downloadLogs}
downloadAllLogs={downloadAllLogs}
/>
<Icon
material="get_app"
onClick={downloadLogs}
tooltip="Download"
className="download-icon"
/>
<Icon
material="refresh"
onClick={downloadAllLogs}
tooltip="Download"
className="download-icon"
/>
</div>
</div>
);