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

remove unnecessary @computed

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-03-18 08:30:24 -04:00
parent 046d60ca71
commit 22baee10f6

View File

@ -32,7 +32,8 @@ interface Props {
@observer
export class ClustersMenu extends React.Component<Props> {
@observable workspaceMenuVisible = false;
@computed get workspace() {
get workspace() {
return workspaceStore.currentWorkspace;
}