Update the webchat paths

This reorders the paths available for selection in webchat and
sets the selected to default
This commit is contained in:
Hemna 2023-10-06 16:02:00 -04:00
parent 0155923341
commit 5ae45ce42f
2 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@ class Aprsdis(aprslib.IS):
aprsd.__version__,
)
self.logger.info("Sending login information")
self.logger.debug("Sending login information")
try:
self._sendall(login_str)

View File

@ -97,9 +97,9 @@
<div class="col-auto">
<label for="pkt_path" class="visually-hidden">PATH</label>
<select class="form-control mb-2 mr-sm-2" name="pkt_path" id="pkt_path" style="width:auto;">
<option value="">Default Path</option>
<option value="WIDE1-1,WIDE2-2" selected>WIDE1-1,WIDE2-2</option>
<option value="" selected>Default Path</option>
<option value="WIDE1-1">WIDE1-1</option>
<option value="WIDE1-1,WIDE2-1">WIDE1-1,WIDE2-1</option>
<option value="ARISS">ARISS</option>
</select>
</div>