From e61534a4ab6dc8c3108b2d2c47733cd438a8e0b2 Mon Sep 17 00:00:00 2001 From: Kenneth Fullbright Date: Mon, 24 Jan 2022 10:50:58 -0600 Subject: Fixed DHCP UseNTPServers Property Patch DHCP property UseNTPServers is not working and its value is not getting reflected in backend. It always remains enabled irrespective on enable or disable on GUI. - Fixed the incorrect patch on the saveNtpState action. Signed-off-by: Kenneth Fullbright Change-Id: Id0b7240e38f68bea8e98694bdcbe4e36e723bbcb --- src/store/modules/Settings/NetworkStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/modules/Settings/NetworkStore.js b/src/store/modules/Settings/NetworkStore.js index 54fb3e05..125eca7a 100644 --- a/src/store/modules/Settings/NetworkStore.js +++ b/src/store/modules/Settings/NetworkStore.js @@ -149,7 +149,7 @@ const NetworkStore = { commit('setNtpState', ntpState); const data = { DHCPv4: { - UseDNSServers: ntpState, + UseNTPServers: ntpState, }, }; // Saving to the first interface automatically updates DHCPv4 and DHCPv6 -- cgit v1.2.3