mirror of
https://github.com/liamcottle/reticulum-meshchat.git
synced 2026-04-28 00:20:48 +00:00
make naming consistent and remove unused functions
This commit is contained in:
parent
9d2f3eebc8
commit
842dbeb0b4
1 changed files with 2 additions and 10 deletions
|
|
@ -678,9 +678,9 @@
|
|||
</template>
|
||||
</ExpandingSection>
|
||||
|
||||
<!-- common interface settings -->
|
||||
<!-- optional interface settings -->
|
||||
<ExpandingSection>
|
||||
<template v-slot:title>Common Interface Settings</template>
|
||||
<template v-slot:title>Optional Interface Settings</template>
|
||||
<template v-slot:content>
|
||||
<div class="p-2 space-y-3">
|
||||
|
||||
|
|
@ -783,7 +783,6 @@ export default {
|
|||
return {
|
||||
|
||||
isEditingInterface: false,
|
||||
showAllSettings: false, // more interface settings, used for TCPInterface and RNodeInterface
|
||||
|
||||
appInfo: null,
|
||||
transportEnabled: false,
|
||||
|
|
@ -824,7 +823,6 @@ export default {
|
|||
newInterfaceForwardPort: null,
|
||||
|
||||
I2PSettings: {
|
||||
showPeerAccordion: false,
|
||||
newInterfacePeers: [],
|
||||
},
|
||||
|
||||
|
|
@ -1256,18 +1254,12 @@ export default {
|
|||
this.RNodeInterfaceLoRaParameters.sensitivity = `${sensitivity.toFixed(1)} dBm`;
|
||||
|
||||
},
|
||||
toggleI2PPeerAccordion() {
|
||||
this.I2PSettings.showPeerAccordion = !this.I2PSettings.showPeerAccordion;
|
||||
},
|
||||
addI2PPeer(address = "") {
|
||||
this.I2PSettings.newInterfacePeers.push(address);
|
||||
},
|
||||
removeI2PPeer(index) {
|
||||
this.I2PSettings.newInterfacePeers.splice(index, 1);
|
||||
},
|
||||
toggleAllSettings() {
|
||||
this.showAllSettings = !this.showAllSettings;
|
||||
},
|
||||
addSubInterface() {
|
||||
this.RNodeMultiInterface.subInterfaces.push({
|
||||
name: '',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue