Apparently we need to null check here

This commit is contained in:
David Baker 2020-06-26 19:07:39 +01:00
parent 04d660517b
commit 916f606872

View file

@ -110,7 +110,7 @@ export default class AccessSecretStorageDialog extends React.PureComponent {
// also clear the file upload control so that the user can upload the same file
// the did before (otherwise the onchange wouldn't fire)
this._fileUpload.current.value = null;
if (this._fileUpload.current) this._fileUpload.current.value = null;
// We don't use Field's validation here because a) we want it in a separate place rather