mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 12:44:07 -08:00
fix: Update subview switch condition (no-changelog) (#4688)
This commit is contained in:
parent
60d66426ff
commit
91408dccf5
|
@ -374,7 +374,7 @@ export default mixins(
|
||||||
this.sendSortingTelemetry();
|
this.sendSortingTelemetry();
|
||||||
},
|
},
|
||||||
loading(value) {
|
loading(value) {
|
||||||
if (!value && this.shouldSwitchToAllSubview) {
|
if (!value && this.subviewResources.length === 0 && this.shouldSwitchToAllSubview) {
|
||||||
this.isOwnerSubview = false;
|
this.isOwnerSubview = false;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue