From 900b8d9f063fbba99c03e66955b7951292ed9ced Mon Sep 17 00:00:00 2001 From: Shubhendu Date: Tue, 7 Feb 2023 01:33:51 +0530 Subject: [PATCH] Disable Audit Log and Monitoring by default (#2632) While tenant creation, by default keep the Audit Log and Monitoring option disabled --- portal-ui/src/screens/Console/Tenants/AddTenant/AddTenant.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/portal-ui/src/screens/Console/Tenants/AddTenant/AddTenant.tsx b/portal-ui/src/screens/Console/Tenants/AddTenant/AddTenant.tsx index e258dc5b7..1bac88589 100644 --- a/portal-ui/src/screens/Console/Tenants/AddTenant/AddTenant.tsx +++ b/portal-ui/src/screens/Console/Tenants/AddTenant/AddTenant.tsx @@ -158,13 +158,13 @@ const AddTenant = () => { }, { label: "Audit Log", - advancedOnly: true, + advancedOnly: false, componentRender: , buttons: [cancelButton, createButton], }, { label: "Monitoring", - advancedOnly: true, + advancedOnly: false, componentRender: , buttons: [cancelButton, createButton], },