permanent enable IPv6 support

This commit is contained in:
MichaelDvP
2024-05-06 13:47:51 +02:00
parent fa6649d57e
commit 4f40e2457a
18 changed files with 2 additions and 43 deletions

View File

@@ -86,7 +86,6 @@ const NetworkSettings: FC = () => {
password: current_data ? current_data.password : '',
hostname: current_data?.hostname,
static_ip_config: false,
enableIPv6: false,
bandwidth20: false,
tx_power: 0,
nosleep: false,
@@ -290,18 +289,6 @@ const NetworkSettings: FC = () => {
margin="normal"
/>
)}
{data.enableIPv6 !== undefined && (
<BlockFormControlLabel
control={
<Checkbox
name="enableIPv6"
checked={data.enableIPv6}
onChange={updateFormValue}
/>
}
label={LL.NETWORK_ENABLE_IPV6()}
/>
)}
<BlockFormControlLabel
control={
<Checkbox