File tree 1 file changed +8
-3
lines changed
site/src/pages/DeploymentSettingsPage/GeneralSettingsPage
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
import AlertTitle from "@mui/material/AlertTitle" ;
2
+ import LinearProgress from "@mui/material/LinearProgress" ;
2
3
import type {
3
4
DAUsResponse ,
4
5
Entitlements ,
@@ -10,7 +11,6 @@ import {
10
11
ActiveUsersTitle ,
11
12
} from "components/ActiveUserChart/ActiveUserChart" ;
12
13
import { ErrorAlert } from "components/Alert/ErrorAlert" ;
13
- import { Gauge } from "components/Gauge/Gauge" ;
14
14
import { SettingsHeader } from "components/SettingsHeader/SettingsHeader" ;
15
15
import { Stack } from "components/Stack/Stack" ;
16
16
import type { FC } from "react" ;
@@ -64,9 +64,14 @@ export const GeneralSettingsPageView: FC<GeneralSettingsPageViewProps> = ({
64
64
{ licenseUtilizationPercentage && (
65
65
< div css = { { marginBottom : 24 , height : 200 } } >
66
66
< ChartSection title = "License Utilization" >
67
- < Gauge
67
+ < LinearProgress
68
+ variant = "determinate"
68
69
value = { licenseUtilizationPercentage * 100 }
69
- label = "License Usage"
70
+ css = { {
71
+ height : 24 ,
72
+ borderRadius : 4 ,
73
+ marginBottom : 8 ,
74
+ } }
70
75
/>
71
76
< span
72
77
css = { {
You can’t perform that action at this time.
0 commit comments