Browse Source

Merge pull request #282 from ControlPanel-gg/product_linking

fixed the most annoying bug where the pre-selected node id was incorrect
AVMG 3 years ago
parent
commit
fccf0a19b0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      resources/views/servers/create.blade.php

+ 2 - 2
resources/views/servers/create.blade.php

@@ -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;
                     }