Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fix: remove deployment bar info icon and adjust language#6537

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
kylecarbs merged 1 commit intomainfromtooltiplang
Mar 9, 2023
Merged
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 3 additions & 13 deletionssite/src/components/DeploymentBanner/DeploymentBannerView.tsx
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -9,7 +9,6 @@ import { MONOSPACE_FONT_FAMILY } from "theme/constants"
import Tooltip from "@material-ui/core/Tooltip"
import { Link as RouterLink } from "react-router-dom"
import Link from "@material-ui/core/Link"
import InfoIcon from "@material-ui/icons/InfoOutlined"
import { VSCodeIcon } from "components/Icons/VSCodeIcon"
import DownloadIcon from "@material-ui/icons/CloudDownload"
import UploadIcon from "@material-ui/icons/CloudUpload"
Expand DownExpand Up@@ -118,21 +117,18 @@ export const DeploymentBannerView: FC<DeploymentBannerViewProps> = ({
</div>
<div className={styles.group}>
<Tooltip title={`Activity in the last ~${aggregatedMinutes} minutes`}>
<div className={styles.category}>
Transmission
<InfoIcon />
</div>
<div className={styles.category}>Transmission</div>
</Tooltip>

<div className={styles.values}>
<Tooltip title="Data sentthrough workspace workspaces">
<Tooltip title="Data sentto workspaces">
<div className={styles.value}>
<DownloadIcon />
{stats ? prettyBytes(stats.workspaces.rx_bytes) : "-"}
</div>
</Tooltip>
<ValueSeparator />
<Tooltip title="Data sent fromworkspace connections">
<Tooltip title="Data sent fromworkspaces">
<div className={styles.value}>
<UploadIcon />
{stats ? prettyBytes(stats.workspaces.tx_bytes) : "-"}
Expand DownExpand Up@@ -287,12 +283,6 @@ const useStyles = makeStyles((theme) => ({
category: {
marginRight: theme.spacing(2),
color: theme.palette.text.hint,

"& svg": {
width: 12,
height: 12,
marginBottom: 2,
},
},
values: {
display: "flex",
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp