Fix HAWK alg (Fixes #610)

This commit is contained in:
Gregory Schier 2017-11-19 23:35:29 +00:00
parent 7adf8591c1
commit b3754a07e3

View File

@ -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 {