mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge branch 'master' into 'master'
Fix corrective policy UI loading intermittent issue See merge request entgra/carbon-device-mgt!373
This commit is contained in:
commit
495534ce5f
@ -39,7 +39,6 @@ var validateInline = {};
|
||||
var clearInline = {};
|
||||
var validateStep = {};
|
||||
var hasPolicyProfileScript = false;
|
||||
var isCorrectiveActionProfileAdded = false;
|
||||
|
||||
var enableInlineError = function (inputField, errorMsg, errorSign) {
|
||||
var fieldIdentifier = "#" + inputField;
|
||||
@ -224,7 +223,6 @@ stepForwardFrom["policy-profile"] = function () {
|
||||
}
|
||||
|
||||
// add policy correction action page
|
||||
if (!isCorrectiveActionProfileAdded) {
|
||||
var policyCorrectiveActionTemplateSrc =
|
||||
"/public/cdmf.unit.policy.corrective-action/templates/policy-corrective-action.hbs";
|
||||
var policyCorrectiveActionScriptSrc =
|
||||
@ -239,16 +237,12 @@ stepForwardFrom["policy-profile"] = function () {
|
||||
"correctivePolicies": $("#logged-in-user").data("corrective-policies")
|
||||
}
|
||||
);
|
||||
$("#select-general-policy-type").html(content)
|
||||
});
|
||||
|
||||
$("#select-general-policy-type").html(content);
|
||||
var script = document.createElement('script');
|
||||
script.type = 'text/javascript';
|
||||
script.src = context + policyCorrectiveActionScriptSrc;
|
||||
document.head.append(script);
|
||||
|
||||
isCorrectiveActionProfileAdded = true
|
||||
}
|
||||
});
|
||||
|
||||
// updating next-page wizard title with selected platform
|
||||
$("#policy-type-page-wizard-title").text("ADD " + policy["platform"] + " POLICY");
|
||||
@ -645,8 +639,6 @@ $(document).ready(function () {
|
||||
}
|
||||
});
|
||||
|
||||
isCorrectiveActionProfileAdded = false;
|
||||
|
||||
$('input[type=radio][name=policy-type-radio-btn]').change(function() {
|
||||
if ($(this).val() === "CORRECTIVE") {
|
||||
$("#select-general-policy-type").addClass("hidden");
|
||||
|
||||
@ -42,7 +42,6 @@ var currentlyEffected = {};
|
||||
var validateInline = {};
|
||||
var clearInline = {};
|
||||
var hasPolicyProfileScript = false;
|
||||
var isCorrectiveActionProfileAdded = false;
|
||||
|
||||
var enableInlineError = function (inputField, errorMsg, errorSign) {
|
||||
var fieldIdentifier = "#" + inputField;
|
||||
@ -285,7 +284,6 @@ stepForwardFrom["policy-profile"] = function () {
|
||||
$("input[name=policy-type-radio-btn][value=" + policyType + "]").prop("checked", true).trigger('change');
|
||||
|
||||
// add policy correction action page
|
||||
if (!isCorrectiveActionProfileAdded) {
|
||||
var policyCorrectiveActionTemplateSrc =
|
||||
"/public/cdmf.unit.policy.corrective-action/templates/policy-corrective-action.hbs";
|
||||
var policyCorrectiveActionScriptSrc =
|
||||
@ -316,15 +314,11 @@ stepForwardFrom["policy-profile"] = function () {
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
var script = document.createElement('script');
|
||||
script.type = 'text/javascript';
|
||||
script.src = context + policyCorrectiveActionScriptSrc;
|
||||
document.head.prepend(script);
|
||||
|
||||
isCorrectiveActionProfileAdded = true;
|
||||
}
|
||||
});
|
||||
|
||||
$(".policy-type-loading-corrective-actions").addClass("hidden");
|
||||
|
||||
@ -768,8 +762,6 @@ $(document).ready(function () {
|
||||
|
||||
$("#policy-profile-wizard-steps").html($(".wr-steps").html());
|
||||
|
||||
isCorrectiveActionProfileAdded = false;
|
||||
|
||||
$('input[type=radio][name=policy-type-radio-btn]').change(function() {
|
||||
if ($(this).val() === "CORRECTIVE") {
|
||||
$("#select-general-policy-type").addClass("hidden");
|
||||
|
||||
Loading…
Reference in New Issue
Block a user