remove ? from checkboxes

This commit is contained in:
proddy
2020-09-28 18:16:38 +02:00
parent 1f2e1a60be
commit e7d069fdb7
3 changed files with 4 additions and 4 deletions

View File

@@ -39,7 +39,7 @@ class NTPSettingsForm extends React.Component<NTPSettingsFormProps> {
value="enabled" value="enabled"
/> />
} }
label="Enable NTP?" label="Enable NTP"
/> />
<TextValidator <TextValidator
validators={['required', 'isIPOrHostname']} validators={['required', 'isIPOrHostname']}

View File

@@ -28,7 +28,7 @@ class OTASettingsForm extends React.Component<OTASettingsFormProps> {
onChange={handleValueChange("enabled")} onChange={handleValueChange("enabled")}
/> />
} }
label="Enable OTA Updates?" label="Enable OTA Updates"
/> />
<TextValidator <TextValidator
validators={['required', 'isNumber', 'minNumber:1025', 'maxNumber:65535']} validators={['required', 'isNumber', 'minNumber:1025', 'maxNumber:65535']}

View File

@@ -125,7 +125,7 @@ class WiFiSettingsForm extends React.Component<WiFiStatusFormProps> {
onChange={handleValueChange("static_ip_config")} onChange={handleValueChange("static_ip_config")}
/> />
} }
label="Static IP Config?" label="Static IP Config"
/> />
{ {
data.static_ip_config && data.static_ip_config &&