Skip to content

Commit 9a79983

Browse files
authored
fix: remove deployment bar info icon and adjust language (#6537)
Re @bpmct's feedback
1 parent 4c29770 commit 9a79983

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

site/src/components/DeploymentBanner/DeploymentBannerView.tsx

+3-13
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import { MONOSPACE_FONT_FAMILY } from "theme/constants"
99
import Tooltip from "@material-ui/core/Tooltip"
1010
import { Link as RouterLink } from "react-router-dom"
1111
import Link from "@material-ui/core/Link"
12-
import InfoIcon from "@material-ui/icons/InfoOutlined"
1312
import { VSCodeIcon } from "components/Icons/VSCodeIcon"
1413
import DownloadIcon from "@material-ui/icons/CloudDownload"
1514
import UploadIcon from "@material-ui/icons/CloudUpload"
@@ -118,21 +117,18 @@ export const DeploymentBannerView: FC<DeploymentBannerViewProps> = ({
118117
</div>
119118
<div className={styles.group}>
120119
<Tooltip title={`Activity in the last ~${aggregatedMinutes} minutes`}>
121-
<div className={styles.category}>
122-
Transmission
123-
<InfoIcon />
124-
</div>
120+
<div className={styles.category}>Transmission</div>
125121
</Tooltip>
126122

127123
<div className={styles.values}>
128-
<Tooltip title="Data sent through workspace workspaces">
124+
<Tooltip title="Data sent to workspaces">
129125
<div className={styles.value}>
130126
<DownloadIcon />
131127
{stats ? prettyBytes(stats.workspaces.rx_bytes) : "-"}
132128
</div>
133129
</Tooltip>
134130
<ValueSeparator />
135-
<Tooltip title="Data sent from workspace connections">
131+
<Tooltip title="Data sent from workspaces">
136132
<div className={styles.value}>
137133
<UploadIcon />
138134
{stats ? prettyBytes(stats.workspaces.tx_bytes) : "-"}
@@ -287,12 +283,6 @@ const useStyles = makeStyles((theme) => ({
287283
category: {
288284
marginRight: theme.spacing(2),
289285
color: theme.palette.text.hint,
290-
291-
"& svg": {
292-
width: 12,
293-
height: 12,
294-
marginBottom: 2,
295-
},
296286
},
297287
values: {
298288
display: "flex",

0 commit comments

Comments
 (0)