extract Text from gmail import, darkmode updates, auto update app versions etc
This commit is contained in:
@@ -20,6 +20,8 @@ type SystemStatus = {
|
||||
environment: string;
|
||||
contentRoot: string;
|
||||
version: string;
|
||||
commitSha?: string | null;
|
||||
buildStamp?: string | null;
|
||||
storage: {
|
||||
dataRoot: string;
|
||||
dbPath: string;
|
||||
@@ -89,6 +91,8 @@ export default function AdminSystemPage() {
|
||||
<Typography variant="overline" sx={{ color: "text.secondary" }}>Environment</Typography>
|
||||
<Typography variant="h5" sx={{ fontWeight: 950 }}>{status?.environment ?? "-"}</Typography>
|
||||
<Typography variant="body2" sx={{ color: "text.secondary", mt: 1 }}>Version {status?.version ?? "-"}</Typography>
|
||||
{status?.commitSha ? <Typography variant="body2" sx={{ color: "text.secondary" }}>Commit {status.commitSha}</Typography> : null}
|
||||
{status?.buildStamp ? <Typography variant="body2" sx={{ color: "text.secondary" }}>{status.buildStamp}</Typography> : null}
|
||||
</Paper>
|
||||
<Paper sx={{ p: 2 }}>
|
||||
<Typography variant="overline" sx={{ color: "text.secondary" }}>Database</Typography>
|
||||
|
||||
Reference in New Issue
Block a user