mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
Fix HAWK alg (Fixes #610)
This commit is contained in:
parent
7adf8591c1
commit
b3754a07e3
@ -40,8 +40,8 @@ class HawkAuth extends React.PureComponent<Props> {
|
||||
this._handleChangeProperty('key', value);
|
||||
}
|
||||
|
||||
_handleChangeAlgorithm (value: string): void {
|
||||
this._handleChangeProperty('algorithm', value);
|
||||
_handleChangeAlgorithm (e: SyntheticEvent<HTMLSelectElement>): void {
|
||||
this._handleChangeProperty('algorithm', e.currentTarget.value);
|
||||
}
|
||||
|
||||
renderHawkAuthenticationFields (): React.Node {
|
||||
|
Loading…
Reference in New Issue
Block a user