-
- }
- title={"MinIO Configuration:"}
- actions={
-
-
-
-
- }
- />
-
- {availableConfigSubSys.map((element) => (
- }
- />
- ))}
+
+ }
+ title={"MinIO Configuration:"}
+ actions={
+
+
+
+
+ }
+ sx={{ marginBottom: 15 }}
+ />
+ {
+ navigate(path);
+ }}
+ useRouteTabs
+ options={availableConfigSubSys.map((element) => {
+ const { configuration_id, configuration_label, icon } = element;
+ return {
+ tabConfig: {
+ id: `settings-tab-${configuration_label}`,
+ label: configuration_label,
+ value: configuration_id,
+ icon: icon,
+ to: getRoutePath(configuration_id),
+ },
+ };
+ })}
+ routes={
+
+ {availableConfigSubSys.map((element) => (
}
+ key={`configItem-${element.configuration_label}`}
+ path={`${element.configuration_id}`}
+ element={}
/>
-
- }
- >
- {availableConfigSubSys.map((element) => {
- const { configuration_id, configuration_label, icon } = element;
- return {
- tabConfig: {
- label: configuration_label,
- value: configuration_id,
- icon: icon,
- component: Link,
- to: getRoutePath(configuration_id),
- },
- };
- })}
-
-
+ ))}
+ }
+ />
+
+ }
+ />