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

fix: removed makeObservable(this) from "terminal-tab.tsx"

Signed-off-by: Roman <ixrock@gmail.com>
This commit is contained in:
Roman 2021-05-07 12:26:51 +03:00
parent 2c290cb32f
commit d60f1a775a

View File

@ -14,11 +14,6 @@ interface Props extends DockTabProps {
@observer
export class TerminalTab extends React.Component<Props> {
constructor(props: Props) {
super(props);
makeObservable(this);
}
componentDidMount() {
reaction(() => this.isDisconnected === true, () => {
dockStore.closeTab(this.tabId);