mirror of
https://github.com/liamcottle/reticulum-meshchat.git
synced 2026-04-27 16:10:32 +00:00
add section titles to interface port list
This commit is contained in:
parent
4970d5088f
commit
3aaebfccba
1 changed files with 2 additions and 0 deletions
|
|
@ -117,7 +117,9 @@
|
|||
<div v-if="newInterfaceType === 'RNodeInterface'" class="mb-2">
|
||||
<label class="block mb-2 text-sm font-medium text-gray-900 dark:text-zinc-100">Port</label>
|
||||
<select v-model="newInterfacePort" class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-zinc-900 dark:border-zinc-600 dark:text-white dark:focus:ring-blue-600 dark:focus:border-blue-600">
|
||||
<option disabled>Serial Devices ({{ comports.length }})</option>
|
||||
<option v-for="comport of comports" :value="comport.device">{{ comport.device }} (Product: {{ comport.product ?? '?' }}, Serial: {{ comport.serial ?? '?' }})</option>
|
||||
<option disabled>Bluetooth Devices ({{ rnodes.length }})</option>
|
||||
<option v-for="rnode of rnodes" :value="rnode.port">{{ rnode.port }}</option>
|
||||
</select>
|
||||
<div class="text-xs text-gray-600">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue