Skip to content

Commit

Permalink
Improved trace functionality & added filters support (#817)
Browse files Browse the repository at this point in the history
Co-authored-by: Benjamin Perez <benjamin@bexsoft.net>
  • Loading branch information
bexsoft and Benjamin Perez committed Jun 17, 2021
1 parent 13f9f6c commit 11eb587
Show file tree
Hide file tree
Showing 11 changed files with 880 additions and 53 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ require (
github.com/minio/cli v1.22.0
github.com/minio/direct-csi v1.3.5-0.20210601185811-f7776f7961bf
github.com/minio/kes v0.11.0
github.com/minio/madmin-go v1.0.8
github.com/minio/madmin-go v1.0.12
github.com/minio/mc v0.0.0-20210531030240-fbbae711bdb4
github.com/minio/minio-go/v7 v7.0.11-0.20210517200026-f0518ca447d6
github.com/minio/operator v0.0.0-20210604224119-7e256f98cf90
Expand Down
451 changes: 451 additions & 0 deletions go.sum

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,11 @@ export const searchField = {
display: "flex",
justifyContent: "center",
padding: "0 16px",
"& label, & label.MuiInputLabel-shrink": {
fontSize: 10,
transform: "translate(5px, 2px)",
transformOrigin: "top left",
},
"& input": {
fontSize: 12,
fontWeight: 700,
Expand Down Expand Up @@ -700,3 +705,10 @@ export const inputFieldStyles = {
color: "#b53b4b",
},
};

export const inlineCheckboxes = {
inlineCheckboxes: {
display: "flex",
justifyContent: "flex-start",
},
}
6 changes: 2 additions & 4 deletions portal-ui/src/screens/Console/Heal/Heal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import {
actionsTray,
containerForHeader,
searchField,
inlineCheckboxes
} from "../Common/FormComponents/common/styleLibrary";
import CheckboxWrapper from "../Common/FormComponents/CheckboxWrapper/CheckboxWrapper";
import PageHeader from "../Common/PageHeader/PageHeader";
Expand Down Expand Up @@ -65,10 +66,7 @@ const styles = (theme: Theme) =>
scanData: {
fontSize: 13,
},
inlineCheckboxes: {
display: "flex",
justifyContent: "flex-start",
},
...inlineCheckboxes,
...actionsTray,
...searchField,
...containerForHeader(theme.spacing(4)),
Expand Down

0 comments on commit 11eb587

Please sign in to comment.