diff --git a/scripts/make-fake-data.js b/scripts/make-fake-data.js index a996ab5..30d0514 100644 --- a/scripts/make-fake-data.js +++ b/scripts/make-fake-data.js @@ -343,7 +343,8 @@ function getDHCPInfo() { .word() .toLowerCase() .split(" ", 2)[0], - ipv6_support: faker.random.boolean() + ipv6_support: faker.random.boolean(), + rapid_commit: faker.random.boolean() }; } diff --git a/src/components/settings/DHCPInfo.tsx b/src/components/settings/DHCPInfo.tsx index 85aeece..1de126d 100644 --- a/src/components/settings/DHCPInfo.tsx +++ b/src/components/settings/DHCPInfo.tsx @@ -46,7 +46,8 @@ class DHCPInfo extends Component { router_ip: "", lease_time: 0, domain: "", - ipv6_support: false + ipv6_support: false, + rapid_commit: false } }; @@ -298,6 +299,17 @@ class DHCPInfo extends Component { {t("IPv6 Support")} + + +