mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +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);
|
this._handleChangeProperty('key', value);
|
||||||
}
|
}
|
||||||
|
|
||||||
_handleChangeAlgorithm (value: string): void {
|
_handleChangeAlgorithm (e: SyntheticEvent<HTMLSelectElement>): void {
|
||||||
this._handleChangeProperty('algorithm', value);
|
this._handleChangeProperty('algorithm', e.currentTarget.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
renderHawkAuthenticationFields (): React.Node {
|
renderHawkAuthenticationFields (): React.Node {
|
||||||
|
Loading…
Reference in New Issue
Block a user