Apparently we need to null check here

pull/21833/head
David Baker 2020-06-26 19:07:39 +01:00
parent 04d660517b
commit 916f606872
1 changed files with 1 additions and 1 deletions

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