Merge pull request #282 from ControlPanel-gg/product_linking

fixed the most annoying bug where the pre-selected node id was incorrect
This commit is contained in:
AVMG 2021-11-12 21:24:32 +01:00 committed by GitHub
commit fccf0a19b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -229,7 +229,7 @@
<small x-text="selectedProductObject?.name ?? '{{__('No selection')}}'"
class="text-muted"></small>
</div>
<template x-if="selectedProductObject?.name">
<ul class="pl-0">
<li class="d-flex justify-content-between">
@ -368,7 +368,7 @@
//automatically select the first entry if there is only 1
if (this.locations.length === 1 && this.locations[0]?.nodes?.length === 1) {
this.selectedNode = this.locations[0].id;
this.selectedNode = this.locations[0]?.nodes?.id;
await this.fetchProducts();
return;
}