WebUI: Refresh DNS record data correctly after mod operation

Fixes: https://pagure.io/freeipa/issue/8359
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
This commit is contained in:
Peter Keresztes Schmidt 2020-06-05 23:20:36 +02:00 committed by Alexander Bokovoy
parent d20cda2189
commit 4d2cd3a273

View File

@ -1430,6 +1430,12 @@ IPA.dns.record_details_facet = function(spec) {
return command;
};
that.create_update_command = function () {
var command = that.details_facet_create_update_command();
command.set_option('structured', true);
return command;
};
return that;
};