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

Missing semicolons

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2020-11-20 08:11:19 +03:00
parent 780d25dfe7
commit 8461fe425f
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ export class WorkspaceMenu extends React.Component<Props> {
} else { } else {
navigate(landingURL()); navigate(landingURL());
} }
} };
render() { render() {
const { className, ...menuProps } = this.props; const { className, ...menuProps } = this.props;

View File

@ -75,7 +75,7 @@ export class Workspaces extends React.Component {
const clusterId = workspaceStore.getById(id).lastActiveClusterId; const clusterId = workspaceStore.getById(id).lastActiveClusterId;
workspaceStore.setActive(id); workspaceStore.setActive(id);
clusterStore.setActive(clusterId); clusterStore.setActive(clusterId);
} };
clearEditing = (id: WorkspaceId) => { clearEditing = (id: WorkspaceId) => {
this.editingWorkspaces.delete(id); this.editingWorkspaces.delete(id);