Add Global Settings into DB initilization step

This commit is contained in:
Khanh Ngo 2020-04-23 23:40:44 +07:00
parent 38c1f3a302
commit 5e7cfbd01f
No known key found for this signature in database
GPG key ID: D5FAA6A16150E49E
4 changed files with 31 additions and 3 deletions

View file

@ -137,7 +137,7 @@ Global Settings
$.each(data, function(index, item) {
$("#ip_suggestion").append(
$("<option></option>")
.text(item.ip_address + ' on ' + item.name)
.text(item.ip_address + ' - ' + item.name)
.val(item.ip_address)
);
});