mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-03-05 21:00:08 -08:00
Update FrequencyCalculator.tsx
change channel references to slot
This commit is contained in:
parent
4fd6bc7529
commit
20555585cf
|
@ -356,12 +356,12 @@ export const FrequencyCalculator = (): JSX.Element => {
|
|||
</div>
|
||||
|
||||
<div className="flex gap-2 mb-4">
|
||||
<label className="font-semibold">Number of channels:</label>
|
||||
<label className="font-semibold">Number of slots:</label>
|
||||
<input type="number" disabled={true} value={numChannels} />
|
||||
</div>
|
||||
|
||||
<div className="flex gap-2">
|
||||
<label>Channel:</label>
|
||||
<label>Frequency Slot:</label>
|
||||
<select
|
||||
value={channel}
|
||||
onChange={(e) => setChannel(Number.parseInt(e.target.value))}
|
||||
|
@ -375,7 +375,7 @@ export const FrequencyCalculator = (): JSX.Element => {
|
|||
</div>
|
||||
|
||||
<div className="flex gap-2">
|
||||
<label className="font-semibold">Channel Frequency:</label>
|
||||
<label className="font-semibold">Slot Frequency:</label>
|
||||
<input type="number" disabled={true} value={channelFrequency} />
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue