Skip to content

Commit

Permalink
Add missing gutter between sections in cluster settings (#6631)
Browse files Browse the repository at this point in the history
Signed-off-by: Janne Savolainen <[email protected]>

Signed-off-by: Janne Savolainen <[email protected]>
  • Loading branch information
jansav authored Nov 23, 2022
1 parent 0eee5a0 commit 892b105
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import type { ValidateDirectory } from "../../../../common/fs/validate-directory
import validateDirectoryInjectable from "../../../../common/fs/validate-directory.injectable";
import type { ResolveTilde } from "../../../../common/path/resolve-tilde.injectable";
import resolveTildeInjectable from "../../../../common/path/resolve-tilde.injectable";
import Gutter from "../../gutter/gutter";

export interface ClusterLocalTerminalSettingProps {
cluster: Cluster;
Expand Down Expand Up @@ -139,6 +140,7 @@ const NonInjectedClusterLocalTerminalSetting = observer(({
this is used as the current working directory (cwd) for the shell process.
</small>
</section>
<Gutter />
<section className="default-namespace">
<SubTitle title="Default Namespace"/>
<Input
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { Input } from "../../input/input";
import { observer } from "mobx-react";
import { Icon } from "../../icon/icon";
import { initialNodeShellImage } from "../../../../common/cluster-types";
import Gutter from "../../gutter/gutter";

export interface ClusterNodeShellSettingProps {
cluster: Cluster;
Expand Down Expand Up @@ -59,6 +60,7 @@ export class ClusterNodeShellSetting extends React.Component<ClusterNodeShellSet
Node shell image. Used for creating node shell pod.
</small>
</section>
<Gutter />
<section>
<SubTitle title="Image pull secret" id="image-pull-secret"/>
<Input
Expand Down

0 comments on commit 892b105

Please sign in to comment.