Compare commits

..

2 Commits

Author SHA1 Message Date
RamiBerm
92c7e2b91d Install page on enter event handler (#640) 2022-01-13 17:07:47 +02:00
Nimrod Gilboa Markevich
d97d481392 Mark Linkerd as beta (#636) 2022-01-13 10:47:30 +02:00
3 changed files with 8 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ This document describe how Mizu tapper handles workloads configured with mtls, m
The list of service meshes supported by Mizu include:
- Istio
- Linkerd
- Linkerd (beta)
## Installation

View File

@@ -53,7 +53,13 @@ export const InstallPage: React.FC<InstallPageProps> = ({onFirstLogin}) => {
}
return <div className="centeredForm">
const handleFormOnKeyPress = (e: React.KeyboardEvent<HTMLInputElement>) => {
if (e.key === "Enter") {
onFormSubmit();
}
};
return <div className="centeredForm" onKeyPress={handleFormOnKeyPress}>
{isLoading && <LoadingOverlay/>}
<div className="form-title left-text">Setup</div>
<span className="form-subtitle">Welcome to Mizu, please set up the admin user to continue</span>

View File

@@ -41,7 +41,6 @@ const LoginPage: React.FC = () => {
}
};
return <div className="centeredForm" onKeyPress={handleFormOnKeyPress}>
{isLoading && <LoadingOverlay/>}
<div className="form-title left-text">Login</div>