mirror of
https://gitlab.com/comunic/comunicconsole
synced 2025-07-07 10:32:50 +00:00
Add support for security keys password
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user