From 7dad4a5987fa001b1bc8f7740503e359ca0449e3 Mon Sep 17 00:00:00 2001 From: Peter Keresztes Schmidt Date: Jun 08 2020 05:25:52 +0000 Subject: WebUI: Refresh DNS record data correctly after mod operation Fixes: https://pagure.io/freeipa/issue/8359 Reviewed-By: Alexander Bokovoy --- diff --git a/install/ui/src/freeipa/dns.js b/install/ui/src/freeipa/dns.js index 200bcdf..7c4c284 100644 --- a/install/ui/src/freeipa/dns.js +++ b/install/ui/src/freeipa/dns.js @@ -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; };