diff --git a/DnsServerCore/www/js/dhcp.js b/DnsServerCore/www/js/dhcp.js
index 7848d9ef..3dae0bed 100644
--- a/DnsServerCore/www/js/dhcp.js
+++ b/DnsServerCore/www/js/dhcp.js
@@ -77,7 +77,7 @@ function refreshDhcpScopes() {
tableHtmlRows = "";
for (var i = 0; i < dhcpScopes.length; i++) {
- tableHtmlRows += "
| " + htmlEncode(dhcpScopes[i].name) + " | " + dhcpScopes[i].startingAddress + " | " + dhcpScopes[i].endingAddress + " | " + dhcpScopes[i].subnetMask + " | " + dhcpScopes[i].networkAddress + " | " + dhcpScopes[i].broadcastAddress + " | " + dhcpScopes[i].interfaceAddress + " | ";
+ tableHtmlRows += "
| " + htmlEncode(dhcpScopes[i].name) + " | " + dhcpScopes[i].startingAddress + " | " + dhcpScopes[i].endingAddress + " | " + dhcpScopes[i].subnetMask + " | " + dhcpScopes[i].networkAddress + " | " + dhcpScopes[i].broadcastAddress + " | " + (dhcpScopes[i].interfaceAddress == null ? "" : dhcpScopes[i].interfaceAddress) + " | ";
tableHtmlRows += "";
if (dhcpScopes[i].enabled)
|