Add support for security keys password

This commit is contained in:
2021-07-11 17:55:47 +02:00
parent 0cd6de200d
commit b7b1962886
4 changed files with 66 additions and 14 deletions

View File

@ -27,6 +27,7 @@ export interface TextInputOptions {
minLength?: number;
maxLength?: number;
label: string;
type?: string;
}
interface AppDiagProvState {
@ -287,6 +288,7 @@ export class ApplicationDialogsProvider extends React.Component<
variant="outlined"
value={this.state.inputValue}
onChange={this.handleInputValueChanged}
type={this.state.inputOptions.type || "text"}
/>
</DialogContent>
<DialogActions>