Disable Audit Log and Monitoring by default (#2632)

While tenant creation, by default keep the Audit Log and Monitoring option disabled
This commit is contained in:
Shubhendu
2023-02-07 01:33:51 +05:30
committed by GitHub
parent 58b45b8ebc
commit 900b8d9f06

View File

@@ -158,13 +158,13 @@ const AddTenant = () => {
},
{
label: "Audit Log",
advancedOnly: true,
advancedOnly: false,
componentRender: <ConfigLogSearch />,
buttons: [cancelButton, createButton],
},
{
label: "Monitoring",
advancedOnly: true,
advancedOnly: false,
componentRender: <ConfigPrometheus />,
buttons: [cancelButton, createButton],
},