mirror of
https://github.com/lubosz/overte.git
synced 2025-04-07 04:42:49 +02:00
Fix Create-new-domain-id not saving in DS settings
This commit is contained in:
parent
3ef9ce0af6
commit
393b55424f
1 changed files with 1 additions and 1 deletions
|
@ -533,7 +533,7 @@ function createNewDomainID(label, justConnected) {
|
|||
|
||||
$.post("/api/domains", domainJSON, function(data){
|
||||
// we successfully created a domain ID, set it on that field
|
||||
var domainID = data.domain_id;
|
||||
var domainID = data.domain.id;
|
||||
console.log("Setting domain id to ", data, domainID);
|
||||
$(Settings.DOMAIN_ID_SELECTOR).val(domainID).change();
|
||||
|
||||
|
|
Loading…
Reference in a new issue