mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Fix mobx error after Edit Resource tab close (#5130)
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
parent
84e1493892
commit
6b8ff7eb15
@ -46,7 +46,7 @@ class NonInjectedEditResource extends React.Component<EditResourceProps & Depend
|
||||
const obj = this.resource;
|
||||
|
||||
if (!obj) {
|
||||
if (store.isLoaded) {
|
||||
if (store?.isLoaded) {
|
||||
// auto-close tab when resource removed from store
|
||||
this.props.closeTab(this.props.tab.id);
|
||||
} else if (!store.isLoading) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user