diff --git a/standalone_app/src/components/PlotHistory.tsx b/standalone_app/src/components/PlotHistory.tsx
index 0b421e5a..c799ac14 100644
--- a/standalone_app/src/components/PlotHistory.tsx
+++ b/standalone_app/src/components/PlotHistory.tsx
@@ -1,6 +1,8 @@
import * as plotly from "plotly.js-dist-min"
import React, { ChangeEvent, FC, useEffect, useState } from "react"
import {
+ Card,
+ CardContent,
Grid,
FormControl,
FormLabel,
@@ -72,100 +74,104 @@ export const PlotHistory: FC<{
])
return (
-
-
-
- History
-
- {study !== null && study.directions.length !== 1 ? (
-
+
+
+
- Objective ID:
-
-
- ) : null}
-
- Log y scale:
-
-
-
- Filter state:
-
+ History
+
+ {study !== null && study.directions.length !== 1 ? (
+
+ Objective ID:
+
+
+ ) : null}
+
+ Log y scale:
+
- }
- label="Complete"
- />
-
+
+ Filter state:
+
+ }
+ label="Complete"
/>
- }
- label="Pruned"
- />
-
-
- X-axis:
-
- }
- label="Number"
- />
- }
- label="Datetime start"
- />
- }
- label="Datetime complete"
- />
-
-
-
-
-
-
-
+
+ }
+ label="Pruned"
+ />
+
+
+ X-axis:
+
+ }
+ label="Number"
+ />
+ }
+ label="Datetime start"
+ />
+ }
+ label="Datetime complete"
+ />
+
+
+
+
+
+
+
+
+
)
}
diff --git a/standalone_app/src/components/PlotImportance.tsx b/standalone_app/src/components/PlotImportance.tsx
index 7303b2db..b532da66 100644
--- a/standalone_app/src/components/PlotImportance.tsx
+++ b/standalone_app/src/components/PlotImportance.tsx
@@ -59,17 +59,15 @@ export const PlotImportance: FC<{ study: Study }> = ({ study }) => {
}, [nObjectives, importance, theme.palette.mode])
return (
-
-
-
- Hyperparameter Importance
-
-
-
-
+
+
+ Hyperparameter Importance
+
+
+
)
}
diff --git a/standalone_app/src/components/PlotIntermediateValues.tsx b/standalone_app/src/components/PlotIntermediateValues.tsx
index 8418cba6..3b82fb99 100644
--- a/standalone_app/src/components/PlotIntermediateValues.tsx
+++ b/standalone_app/src/components/PlotIntermediateValues.tsx
@@ -23,17 +23,15 @@ export const PlotIntermediateValues: FC<{
}, [trials, theme.palette.mode, false, includePruned, logScale])
return (
-
-
-
- Intermediate values
-
-
-
-
+
+
+ Intermediate values
+
+
+
)
}