mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Fix error in EditResource (#5484)
This commit is contained in:
parent
b0d6465694
commit
c62333f334
@ -45,8 +45,8 @@ class NonInjectedEditResource extends React.Component<EditResourceProps & Depend
|
||||
const tabData = this.props.editResourceStore.getData(this.props.tab.id);
|
||||
const obj = this.resource;
|
||||
|
||||
if (!obj) {
|
||||
if (store?.isLoaded) {
|
||||
if (!obj && store) {
|
||||
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