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

fix lint after merge

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-05-04 19:58:48 -04:00
parent f88109cc03
commit 2a9cc1a5c3
2 changed files with 7 additions and 5 deletions

View File

@ -4,7 +4,7 @@
*/
import { getInjectable } from "@ogre-tools/injectable";
import { observable } from "mobx";
import type { ConfirmDialogParams } from ".";
import type { ConfirmDialogParams } from "./confirm-dialog";
const confirmDialogStateInjectable = getInjectable({
id: "confirm-dialog-state",

View File

@ -14,9 +14,7 @@ import { Icon } from "../icon";
import type { AnimateName } from "../animate";
import { Animate } from "../animate";
import { ResizeDirection, ResizeGrowthDirection, ResizeSide, ResizingAnchor } from "../resizing-anchor";
import drawerStorageInjectable, {
defaultDrawerWidth,
} from "./drawer-storage/drawer-storage.injectable";
import drawerStorageInjectable, { defaultDrawerWidth } from "./drawer-storage/drawer-storage.injectable";
import { withInjectables } from "@ogre-tools/injectable-react";
import historyInjectable from "../../navigation/history.injectable";
import type { History } from "history";
@ -208,7 +206,11 @@ class NonInjectedDrawer extends React.Component<DrawerProps & Dependencies & typ
)}
</div>
{toolbar}
<Icon material="close" tooltip="Close" onClick={this.close}/>
<Icon
material="close"
tooltip="Close"
onClick={this.close}
/>
</div>
<div
className={cssNames("drawer-content flex column box grow", contentClass)}