Skip to content

Commit

Permalink
release v0.1.0-rc.12
Browse files Browse the repository at this point in the history
  • Loading branch information
davidqhr committed Oct 14, 2020
1 parent 55f02e0 commit 1210c0b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
19 changes: 9 additions & 10 deletions frontend/src/pages/Profile/index.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import React from "react";
import { Box, createStyles, Theme, Typography, WithStyles } from "@material-ui/core";
import { withUserAuth, WithUserAuthProps } from "hoc/withUserAuth";
import { KPanel } from "widgets/KPanel";
import Avatar from "@material-ui/core/Avatar";
import { withNamespace, WithNamespaceProps } from "hoc/withNamespace";
import { BlankTargetLink } from "widgets/BlankTargetLink";
import { Alert, AlertTitle } from "@material-ui/lab";
import Button from "@material-ui/core/Button";
import { BasePage } from "pages/BasePage";
import { CollapseWrapper } from "widgets/CollapseWrapper";
import withStyles from "@material-ui/core/styles/withStyles";
import { Alert, AlertTitle } from "@material-ui/lab";
import { stopImpersonating } from "api/realApi/index";
import { push } from "connected-react-router";
import { withNamespace, WithNamespaceProps } from "hoc/withNamespace";
import { withUserAuth, WithUserAuthProps } from "hoc/withUserAuth";
import { BasePage } from "pages/BasePage";
import React from "react";
import { BlankTargetLink } from "widgets/BlankTargetLink";
import { CollapseWrapper } from "widgets/CollapseWrapper";
import { KPanel } from "widgets/KPanel";

const styles = (theme: Theme) =>
createStyles({
Expand Down Expand Up @@ -77,10 +77,9 @@ class ProfilePageRaw extends React.PureComponent<Props, State> {
};

private renderApplicationRole = () => {
const { applications } = this.props;
const roles = this.getApplicationRoles();

if (applications.length > 0 && roles.length === 0) {
if (roles.length === 0) {
return (
<Alert severity="warning">
<AlertTitle>No Role</AlertTitle>
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/pages/SSO/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ class SSOPageRaw extends React.PureComponent<Props, State> {
temporary admin email account which is generated when you setup your cluster. Since the account
doesn't have expired time and doesn't support multi factor authentication, it's not safe for long
time usage.
<br />
Before the deletion, please test your new connector to confirm your settings are correct.
</Alert>
<Box mt={2}>
{" "}
Expand Down
2 changes: 1 addition & 1 deletion kalm-install-kalmoperatorconfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ metadata:
namespace: kalm-operator
name: kalmoperatorconfig-sample
spec:
kalmVersion: v0.1.0-rc.11
kalmVersion: v0.1.0-rc.12
2 changes: 1 addition & 1 deletion kalm-install-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ spec:
- --enable-leader-election
command:
- /manager
image: kalmhq/kalm-operator:v0.1.0-rc.11
image: kalmhq/kalm-operator:v0.1.0-rc.12
imagePullPolicy: Always
name: manager
resources:
Expand Down

0 comments on commit 1210c0b

Please sign in to comment.