Skip to content

Commit

Permalink
change text about MQTT subscribe formats
Browse files Browse the repository at this point in the history
  • Loading branch information
proddy committed Oct 19, 2021
1 parent d587f44 commit aad4b0a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions interface/src/mqtt/MqttSettingsForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,16 +189,20 @@ class MqttSettingsForm extends React.Component<MqttSettingsFormProps> {
</SelectValidator>
<SelectValidator
name="subscribe_format"
label="Subscribe Format"
label="Subscribe Topics"
value={data.subscribe_format}
fullWidth
variant="outlined"
onChange={handleValueChange('subscribe_format')}
margin="normal"
>
<MenuItem value={0}>General device topic</MenuItem>
<MenuItem value={1}>Individual topics, main heating circuit</MenuItem>
<MenuItem value={2}>Individual topics, all heating circuits</MenuItem>
<MenuItem value={0}>one topic per device</MenuItem>
<MenuItem value={1}>
topics for each device and it's values (main heating circuit only)
</MenuItem>
<MenuItem value={2}>
topic for each device and it's values (all heating circuits)
</MenuItem>
</SelectValidator>
<BlockFormControlLabel
control={
Expand Down

0 comments on commit aad4b0a

Please sign in to comment.