Merge pull request #5999 from jcassette/issue-4926
luci-app-ddns: fix creation of custom service (fix #4926)
This commit is contained in:
commit
b139f13c0b
1 changed files with 3 additions and 1 deletions
|
@ -477,7 +477,9 @@ return view.extend({
|
|||
|
||||
return m.save(function() {
|
||||
uci.add('ddns', 'service', section_id);
|
||||
uci.set('ddns', section_id, 'service_name', service_value);
|
||||
if (service_value != '-') {
|
||||
uci.set('ddns', section_id, 'service_name', service_value);
|
||||
}
|
||||
uci.set('ddns', section_id, 'use_ipv6', ipv6_value);
|
||||
}).then(L.bind(m.children[1].renderMoreOptionsModal, m.children[1], section_id));
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue